@browserless.io/browserless 2.0.0-beta-1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +674 -0
- package/LICENSE +6 -0
- package/README.md +132 -0
- package/assets/logo.png +0 -0
- package/bin/browserless.js +227 -0
- package/browser.json +7 -0
- package/build/browserless.d.ts +33 -0
- package/build/browserless.js +146 -0
- package/build/browsers/cdp-chromium.d.ts +41 -0
- package/build/browsers/cdp-chromium.js +287 -0
- package/build/browsers/index.d.ts +26 -0
- package/build/browsers/index.js +183 -0
- package/build/browsers/playwright-chromium.d.ts +34 -0
- package/build/browsers/playwright-chromium.js +106 -0
- package/build/browsers/playwright-firefox.d.ts +34 -0
- package/build/browsers/playwright-firefox.js +101 -0
- package/build/browsers/playwright-webkit.d.ts +34 -0
- package/build/browsers/playwright-webkit.js +101 -0
- package/build/config.d.ts +138 -0
- package/build/config.js +349 -0
- package/build/constants.d.ts +4 -0
- package/build/constants.js +4 -0
- package/build/data/classes.json +1 -0
- package/build/data/selectors.json +1 -0
- package/build/exports.d.ts +20 -0
- package/build/exports.js +22 -0
- package/build/file-system.d.ts +24 -0
- package/build/file-system.js +46 -0
- package/build/hooks.d.ts +5 -0
- package/build/hooks.js +20 -0
- package/build/http.d.ts +175 -0
- package/build/http.js +104 -0
- package/build/index.d.ts +1 -0
- package/build/index.js +39 -0
- package/build/limiter.d.ts +24 -0
- package/build/limiter.js +147 -0
- package/build/limiter.spec.d.ts +1 -0
- package/build/limiter.spec.js +241 -0
- package/build/metrics.d.ts +24 -0
- package/build/metrics.js +86 -0
- package/build/metrics.spec.d.ts +1 -0
- package/build/metrics.spec.js +35 -0
- package/build/mime-types.d.ts +1 -0
- package/build/mime-types.js +328 -0
- package/build/monitoring.d.ts +13 -0
- package/build/monitoring.js +38 -0
- package/build/routes/chromium/http/content-post.body.json +514 -0
- package/build/routes/chromium/http/content-post.d.ts +34 -0
- package/build/routes/chromium/http/content-post.js +109 -0
- package/build/routes/chromium/http/content-post.query.json +183 -0
- package/build/routes/chromium/http/content-post.response.json +5 -0
- package/build/routes/chromium/http/download-post.body.json +32 -0
- package/build/routes/chromium/http/download-post.d.ts +16 -0
- package/build/routes/chromium/http/download-post.js +92 -0
- package/build/routes/chromium/http/download-post.query.json +120 -0
- package/build/routes/chromium/http/download-post.response.json +4 -0
- package/build/routes/chromium/http/function-post.body.json +32 -0
- package/build/routes/chromium/http/function-post.d.ts +18 -0
- package/build/routes/chromium/http/function-post.js +53 -0
- package/build/routes/chromium/http/function-post.query.json +120 -0
- package/build/routes/chromium/http/function-post.response.json +4 -0
- package/build/routes/chromium/http/pdf-post.body.json +654 -0
- package/build/routes/chromium/http/pdf-post.d.ts +35 -0
- package/build/routes/chromium/http/pdf-post.js +107 -0
- package/build/routes/chromium/http/pdf-post.query.json +120 -0
- package/build/routes/chromium/http/pdf-post.response.json +5 -0
- package/build/routes/chromium/http/performance.body.json +26 -0
- package/build/routes/chromium/http/performance.d.ts +17 -0
- package/build/routes/chromium/http/performance.js +30 -0
- package/build/routes/chromium/http/performance.query.json +120 -0
- package/build/routes/chromium/http/performance.response.json +7 -0
- package/build/routes/chromium/http/scrape-post.body.json +561 -0
- package/build/routes/chromium/http/scrape-post.d.ts +106 -0
- package/build/routes/chromium/http/scrape-post.js +205 -0
- package/build/routes/chromium/http/scrape-post.query.json +183 -0
- package/build/routes/chromium/http/scrape-post.response.json +325 -0
- package/build/routes/chromium/http/screenshot-post.body.json +604 -0
- package/build/routes/chromium/http/screenshot-post.d.ts +37 -0
- package/build/routes/chromium/http/screenshot-post.js +124 -0
- package/build/routes/chromium/http/screenshot-post.query.json +120 -0
- package/build/routes/chromium/http/screenshot-post.response.json +5 -0
- package/build/routes/chromium/tests/content.spec.d.ts +1 -0
- package/build/routes/chromium/tests/content.spec.js +285 -0
- package/build/routes/chromium/tests/download.spec.d.ts +1 -0
- package/build/routes/chromium/tests/download.spec.js +67 -0
- package/build/routes/chromium/tests/function.spec.d.ts +1 -0
- package/build/routes/chromium/tests/function.spec.js +245 -0
- package/build/routes/chromium/tests/pdf.spec.d.ts +1 -0
- package/build/routes/chromium/tests/pdf.spec.js +333 -0
- package/build/routes/chromium/tests/performance.spec.d.ts +1 -0
- package/build/routes/chromium/tests/performance.spec.js +124 -0
- package/build/routes/chromium/tests/scrape.spec.d.ts +1 -0
- package/build/routes/chromium/tests/scrape.spec.js +354 -0
- package/build/routes/chromium/tests/screenshot.spec.d.ts +1 -0
- package/build/routes/chromium/tests/screenshot.spec.js +339 -0
- package/build/routes/chromium/tests/websocket.spec.d.ts +1 -0
- package/build/routes/chromium/tests/websocket.spec.js +309 -0
- package/build/routes/chromium/utils/function/client.d.ts +26 -0
- package/build/routes/chromium/utils/function/client.js +66 -0
- package/build/routes/chromium/utils/function/handler.d.ts +18 -0
- package/build/routes/chromium/utils/function/handler.js +95 -0
- package/build/routes/chromium/utils/performance/child.d.ts +1 -0
- package/build/routes/chromium/utils/performance/child.js +29 -0
- package/build/routes/chromium/utils/performance/main.d.ts +3 -0
- package/build/routes/chromium/utils/performance/main.js +65 -0
- package/build/routes/chromium/utils/performance/types.d.ts +21 -0
- package/build/routes/chromium/utils/performance/types.js +1 -0
- package/build/routes/chromium/ws/browser.d.ts +6 -0
- package/build/routes/chromium/ws/browser.js +11 -0
- package/build/routes/chromium/ws/browser.query.json +120 -0
- package/build/routes/chromium/ws/cdp-chromium.d.ts +6 -0
- package/build/routes/chromium/ws/cdp-chromium.js +11 -0
- package/build/routes/chromium/ws/cdp-chromium.query.json +120 -0
- package/build/routes/chromium/ws/page.d.ts +6 -0
- package/build/routes/chromium/ws/page.js +11 -0
- package/build/routes/chromium/ws/page.query.json +120 -0
- package/build/routes/chromium/ws/playwright-chromium.d.ts +6 -0
- package/build/routes/chromium/ws/playwright-chromium.js +19 -0
- package/build/routes/chromium/ws/playwright-chromium.query.json +100 -0
- package/build/routes/firefox/tests/websocket.spec.d.ts +1 -0
- package/build/routes/firefox/tests/websocket.spec.js +104 -0
- package/build/routes/firefox/ws/playwright-firefox.d.ts +6 -0
- package/build/routes/firefox/ws/playwright-firefox.js +19 -0
- package/build/routes/firefox/ws/playwright-firefox.query.json +100 -0
- package/build/routes/management/http/config-get.d.ts +25 -0
- package/build/routes/management/http/config-get.js +43 -0
- package/build/routes/management/http/config-get.response.json +107 -0
- package/build/routes/management/http/metrics-get.d.ts +4 -0
- package/build/routes/management/http/metrics-get.js +24 -0
- package/build/routes/management/http/metrics-get.response.json +94 -0
- package/build/routes/management/http/metrics-total-get.d.ts +4 -0
- package/build/routes/management/http/metrics-total-get.js +60 -0
- package/build/routes/management/http/metrics-total-get.response.json +72 -0
- package/build/routes/management/http/sessions-get.d.ts +4 -0
- package/build/routes/management/http/sessions-get.js +21 -0
- package/build/routes/management/http/sessions-get.response.json +221 -0
- package/build/routes/management/http/static-get.d.ts +3 -0
- package/build/routes/management/http/static-get.js +67 -0
- package/build/routes/management/tests/management.spec.d.ts +1 -0
- package/build/routes/management/tests/management.spec.js +41 -0
- package/build/routes/webkit/tests/websocket.spec.d.ts +1 -0
- package/build/routes/webkit/tests/websocket.spec.js +104 -0
- package/build/routes/webkit/ws/playwright-webkit.d.ts +6 -0
- package/build/routes/webkit/ws/playwright-webkit.js +19 -0
- package/build/routes/webkit/ws/playwright-webkit.query.json +100 -0
- package/build/server.d.ts +38 -0
- package/build/server.js +365 -0
- package/build/shim.d.ts +9 -0
- package/build/shim.js +54 -0
- package/build/shim.spec.d.ts +1 -0
- package/build/shim.spec.js +114 -0
- package/build/types.d.ts +360 -0
- package/build/types.js +6 -0
- package/build/utils.d.ts +111 -0
- package/build/utils.js +570 -0
- package/build/webhooks.d.ts +11 -0
- package/build/webhooks.js +43 -0
- package/docker/base/.dockerignore +16 -0
- package/docker/base/Dockerfile +70 -0
- package/docker/chrome/.dockerignore +16 -0
- package/docker/chrome/Dockerfile +40 -0
- package/docker/firefox/.dockerignore +16 -0
- package/docker/firefox/Dockerfile +39 -0
- package/docker/multi/.dockerignore +16 -0
- package/docker/multi/Dockerfile +37 -0
- package/docker/sdk/.dockerignore +16 -0
- package/docker/sdk/Dockerfile +34 -0
- package/docker/webkit/.dockerignore +16 -0
- package/docker/webkit/Dockerfile +40 -0
- package/extensions/screencast/background.js +143 -0
- package/extensions/screencast/content_script.js +18 -0
- package/extensions/screencast/manifest.json +19 -0
- package/extensions/ublock/1p-filters.html +69 -0
- package/extensions/ublock/3p-filters.html +119 -0
- package/extensions/ublock/LICENSE.txt +674 -0
- package/extensions/ublock/_locales/ar/messages.json +1290 -0
- package/extensions/ublock/_locales/az/messages.json +1290 -0
- package/extensions/ublock/_locales/be/messages.json +1290 -0
- package/extensions/ublock/_locales/bg/messages.json +1290 -0
- package/extensions/ublock/_locales/bn/messages.json +1290 -0
- package/extensions/ublock/_locales/br_FR/messages.json +1290 -0
- package/extensions/ublock/_locales/bs/messages.json +1290 -0
- package/extensions/ublock/_locales/ca/messages.json +1290 -0
- package/extensions/ublock/_locales/cs/messages.json +1290 -0
- package/extensions/ublock/_locales/cv/messages.json +1290 -0
- package/extensions/ublock/_locales/da/messages.json +1290 -0
- package/extensions/ublock/_locales/de/messages.json +1290 -0
- package/extensions/ublock/_locales/el/messages.json +1290 -0
- package/extensions/ublock/_locales/en/messages.json +1292 -0
- package/extensions/ublock/_locales/en_GB/messages.json +1290 -0
- package/extensions/ublock/_locales/eo/messages.json +1290 -0
- package/extensions/ublock/_locales/es/messages.json +1290 -0
- package/extensions/ublock/_locales/et/messages.json +1290 -0
- package/extensions/ublock/_locales/eu/messages.json +1290 -0
- package/extensions/ublock/_locales/fa/messages.json +1290 -0
- package/extensions/ublock/_locales/fi/messages.json +1290 -0
- package/extensions/ublock/_locales/fil/messages.json +1290 -0
- package/extensions/ublock/_locales/fr/messages.json +1290 -0
- package/extensions/ublock/_locales/fy/messages.json +1290 -0
- package/extensions/ublock/_locales/gl/messages.json +1290 -0
- package/extensions/ublock/_locales/gu/messages.json +1290 -0
- package/extensions/ublock/_locales/he/messages.json +1290 -0
- package/extensions/ublock/_locales/hi/messages.json +1290 -0
- package/extensions/ublock/_locales/hr/messages.json +1290 -0
- package/extensions/ublock/_locales/hu/messages.json +1290 -0
- package/extensions/ublock/_locales/hy/messages.json +1290 -0
- package/extensions/ublock/_locales/id/messages.json +1290 -0
- package/extensions/ublock/_locales/it/messages.json +1290 -0
- package/extensions/ublock/_locales/ja/messages.json +1290 -0
- package/extensions/ublock/_locales/ka/messages.json +1290 -0
- package/extensions/ublock/_locales/kk/messages.json +1290 -0
- package/extensions/ublock/_locales/kn/messages.json +1290 -0
- package/extensions/ublock/_locales/ko/messages.json +1290 -0
- package/extensions/ublock/_locales/ku/messages.json +1290 -0
- package/extensions/ublock/_locales/lt/messages.json +1290 -0
- package/extensions/ublock/_locales/lv/messages.json +1290 -0
- package/extensions/ublock/_locales/mk/messages.json +1290 -0
- package/extensions/ublock/_locales/ml/messages.json +1290 -0
- package/extensions/ublock/_locales/mr/messages.json +1290 -0
- package/extensions/ublock/_locales/ms/messages.json +1290 -0
- package/extensions/ublock/_locales/nb/messages.json +1290 -0
- package/extensions/ublock/_locales/nl/messages.json +1290 -0
- package/extensions/ublock/_locales/no/messages.json +1290 -0
- package/extensions/ublock/_locales/oc/messages.json +1290 -0
- package/extensions/ublock/_locales/pa/messages.json +1290 -0
- package/extensions/ublock/_locales/pl/messages.json +1290 -0
- package/extensions/ublock/_locales/pt_BR/messages.json +1290 -0
- package/extensions/ublock/_locales/pt_PT/messages.json +1290 -0
- package/extensions/ublock/_locales/ro/messages.json +1290 -0
- package/extensions/ublock/_locales/ru/messages.json +1290 -0
- package/extensions/ublock/_locales/si/messages.json +1290 -0
- package/extensions/ublock/_locales/sk/messages.json +1290 -0
- package/extensions/ublock/_locales/sl/messages.json +1290 -0
- package/extensions/ublock/_locales/so/messages.json +1290 -0
- package/extensions/ublock/_locales/sq/messages.json +1290 -0
- package/extensions/ublock/_locales/sr/messages.json +1290 -0
- package/extensions/ublock/_locales/sv/messages.json +1290 -0
- package/extensions/ublock/_locales/sw/messages.json +1290 -0
- package/extensions/ublock/_locales/ta/messages.json +1290 -0
- package/extensions/ublock/_locales/te/messages.json +1290 -0
- package/extensions/ublock/_locales/th/messages.json +1290 -0
- package/extensions/ublock/_locales/tr/messages.json +1290 -0
- package/extensions/ublock/_locales/uk/messages.json +1290 -0
- package/extensions/ublock/_locales/ur/messages.json +1290 -0
- package/extensions/ublock/_locales/vi/messages.json +1290 -0
- package/extensions/ublock/_locales/zh_CN/messages.json +1290 -0
- package/extensions/ublock/_locales/zh_TW/messages.json +1290 -0
- package/extensions/ublock/about.html +63 -0
- package/extensions/ublock/advanced-settings.html +42 -0
- package/extensions/ublock/asset-viewer.html +50 -0
- package/extensions/ublock/assets/assets.json +903 -0
- package/extensions/ublock/assets/resources/scriptlets.js +4255 -0
- package/extensions/ublock/assets/thirdparties/easylist/easylist.txt +65576 -0
- package/extensions/ublock/assets/thirdparties/easylist/easyprivacy.txt +33219 -0
- package/extensions/ublock/assets/thirdparties/pgl.yoyo.org/as/README.md +29 -0
- package/extensions/ublock/assets/thirdparties/pgl.yoyo.org/as/serverlist +3732 -0
- package/extensions/ublock/assets/thirdparties/publicsuffix.org/list/effective_tld_names.dat +15431 -0
- package/extensions/ublock/assets/thirdparties/urlhaus-filter/LICENSE.md +42 -0
- package/extensions/ublock/assets/thirdparties/urlhaus-filter/urlhaus-filter-online.txt +1970 -0
- package/extensions/ublock/assets/ublock/badlists.txt +77 -0
- package/extensions/ublock/assets/ublock/badware.min.txt +3033 -0
- package/extensions/ublock/assets/ublock/filters.min.txt +23419 -0
- package/extensions/ublock/assets/ublock/privacy.min.txt +575 -0
- package/extensions/ublock/assets/ublock/quick-fixes.min.txt +99 -0
- package/extensions/ublock/assets/ublock/unbreak.min.txt +2448 -0
- package/extensions/ublock/background.html +12 -0
- package/extensions/ublock/cloud-ui.html +23 -0
- package/extensions/ublock/code-viewer.html +53 -0
- package/extensions/ublock/css/1p-filters.css +26 -0
- package/extensions/ublock/css/3p-filters.css +250 -0
- package/extensions/ublock/css/about.css +3 -0
- package/extensions/ublock/css/advanced-settings.css +26 -0
- package/extensions/ublock/css/asset-viewer.css +79 -0
- package/extensions/ublock/css/click2load.css +53 -0
- package/extensions/ublock/css/cloud-ui.css +104 -0
- package/extensions/ublock/css/code-viewer.css +67 -0
- package/extensions/ublock/css/codemirror.css +326 -0
- package/extensions/ublock/css/common.css +347 -0
- package/extensions/ublock/css/dashboard-common.css +55 -0
- package/extensions/ublock/css/dashboard.css +115 -0
- package/extensions/ublock/css/devtools.css +22 -0
- package/extensions/ublock/css/document-blocked.css +146 -0
- package/extensions/ublock/css/dyna-rules.css +79 -0
- package/extensions/ublock/css/epicker-ui.css +270 -0
- package/extensions/ublock/css/fa-icons.css +149 -0
- package/extensions/ublock/css/fonts/Inter/Inter-Regular.woff2 +0 -0
- package/extensions/ublock/css/fonts/Inter/Inter-SemiBold.woff2 +0 -0
- package/extensions/ublock/css/fonts/Inter/LICENSE.txt +93 -0
- package/extensions/ublock/css/fonts/Metropolis/Metropolis-Regular.woff2 +0 -0
- package/extensions/ublock/css/fonts/Metropolis/Metropolis-SemiBold.woff2 +0 -0
- package/extensions/ublock/css/fonts/Metropolis/README.md +25 -0
- package/extensions/ublock/css/fonts/Metropolis/UNLICENSE +24 -0
- package/extensions/ublock/css/logger-ui-inspector.css +116 -0
- package/extensions/ublock/css/logger-ui.css +978 -0
- package/extensions/ublock/css/popup-fenix.css +778 -0
- package/extensions/ublock/css/settings.css +74 -0
- package/extensions/ublock/css/support.css +110 -0
- package/extensions/ublock/css/themes/default.css +526 -0
- package/extensions/ublock/css/whitelist.css +22 -0
- package/extensions/ublock/dashboard.html +47 -0
- package/extensions/ublock/devtools.html +58 -0
- package/extensions/ublock/document-blocked.html +64 -0
- package/extensions/ublock/dyna-rules.html +67 -0
- package/extensions/ublock/img/cloud.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/README +9 -0
- package/extensions/ublock/img/flags-of-the-world/ad.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/ae.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/af.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/ag.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/ai.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/al.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/am.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/ao.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/aq.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/ar.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/as.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/at.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/au.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/aw.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/ax.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/az.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/ba.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/bb.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/bd.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/be.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/bf.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/bg.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/bh.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/bi.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/bj.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/bl.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/bm.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/bn.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/bo.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/bq.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/br.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/bs.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/bt.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/bv.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/bw.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/by.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/bz.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/ca.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/cc.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/cd.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/cf.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/cg.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/ch.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/ci.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/ck.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/cl.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/cm.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/cn.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/co.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/cr.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/cu.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/cv.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/cw.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/cx.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/cy.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/cz.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/de.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/dj.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/dk.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/dm.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/do.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/dz.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/ec.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/ee.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/eg.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/eh.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/er.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/es.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/et.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/fi.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/fj.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/fk.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/fm.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/fo.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/fr.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/ga.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/gb-eng.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/gb-nir.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/gb-sct.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/gb-wls.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/gb.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/gd.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/ge.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/gf.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/gg.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/gh.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/gi.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/gl.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/gm.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/gn.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/gp.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/gq.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/gr.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/gs.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/gt.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/gu.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/gw.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/gy.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/hk.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/hm.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/hn.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/hr.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/ht.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/hu.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/id.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/ie.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/il.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/im.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/in.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/io.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/iq.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/ir.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/is.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/it.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/je.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/jm.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/jo.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/jp.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/ke.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/kg.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/kh.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/ki.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/km.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/kn.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/kp.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/kr.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/kw.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/ky.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/kz.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/la.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/lb.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/lc.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/li.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/lk.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/lr.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/ls.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/lt.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/lu.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/lv.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/ly.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/ma.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/mc.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/md.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/me.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/mf.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/mg.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/mh.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/mk.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/ml.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/mm.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/mn.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/mo.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/mp.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/mq.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/mr.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/ms.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/mt.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/mu.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/mv.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/mw.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/mx.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/my.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/mz.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/na.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/nc.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/ne.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/nf.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/ng.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/ni.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/nl.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/no.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/np.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/nr.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/nu.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/nz.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/om.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/pa.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/pe.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/pf.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/pg.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/ph.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/pk.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/pl.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/pm.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/pn.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/pr.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/ps.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/pt.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/pw.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/py.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/qa.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/re.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/ro.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/rs.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/ru.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/rw.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/sa.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/sb.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/sc.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/sd.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/se.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/sg.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/sh.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/si.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/sj.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/sk.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/sl.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/sm.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/sn.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/so.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/sr.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/ss.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/st.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/sv.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/sx.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/sy.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/sz.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/tc.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/td.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/tf.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/tg.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/th.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/tj.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/tk.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/tl.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/tm.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/tn.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/to.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/tr.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/tt.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/tv.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/tw.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/tz.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/ua.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/ug.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/um.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/us.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/uy.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/uz.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/va.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/vc.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/ve.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/vg.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/vi.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/vn.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/vu.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/wf.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/ws.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/xk.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/ye.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/yt.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/za.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/zm.png +0 -0
- package/extensions/ublock/img/flags-of-the-world/zw.png +0 -0
- package/extensions/ublock/img/fontawesome/LICENSE.txt +25 -0
- package/extensions/ublock/img/fontawesome/fontawesome-defs.svg +79 -0
- package/extensions/ublock/img/help16.png +0 -0
- package/extensions/ublock/img/icon_128.png +0 -0
- package/extensions/ublock/img/icon_16-loading.png +0 -0
- package/extensions/ublock/img/icon_16-off.png +0 -0
- package/extensions/ublock/img/icon_16.png +0 -0
- package/extensions/ublock/img/icon_32-loading.png +0 -0
- package/extensions/ublock/img/icon_32-off.png +0 -0
- package/extensions/ublock/img/icon_32.png +0 -0
- package/extensions/ublock/img/icon_64-loading.png +0 -0
- package/extensions/ublock/img/icon_64-off.png +0 -0
- package/extensions/ublock/img/icon_64.png +0 -0
- package/extensions/ublock/img/material-design.svg +16 -0
- package/extensions/ublock/img/photon.svg +16 -0
- package/extensions/ublock/img/ublock-defs.svg +27 -0
- package/extensions/ublock/img/ublock.svg +44 -0
- package/extensions/ublock/is-webrtc-supported.html +9 -0
- package/extensions/ublock/js/1p-filters.js +336 -0
- package/extensions/ublock/js/3p-filters.js +867 -0
- package/extensions/ublock/js/about.js +34 -0
- package/extensions/ublock/js/advanced-settings.js +194 -0
- package/extensions/ublock/js/asset-viewer.js +112 -0
- package/extensions/ublock/js/assets.js +1448 -0
- package/extensions/ublock/js/background.js +404 -0
- package/extensions/ublock/js/base64-custom.js +246 -0
- package/extensions/ublock/js/benchmarks.js +421 -0
- package/extensions/ublock/js/biditrie.js +947 -0
- package/extensions/ublock/js/cachestorage.js +510 -0
- package/extensions/ublock/js/click2load.js +60 -0
- package/extensions/ublock/js/cloud-ui.js +238 -0
- package/extensions/ublock/js/code-viewer.js +311 -0
- package/extensions/ublock/js/codemirror/search-thread.js +199 -0
- package/extensions/ublock/js/codemirror/search.js +504 -0
- package/extensions/ublock/js/codemirror/ubo-dynamic-filtering.js +239 -0
- package/extensions/ublock/js/codemirror/ubo-static-filtering.js +1126 -0
- package/extensions/ublock/js/commands.js +181 -0
- package/extensions/ublock/js/console.js +59 -0
- package/extensions/ublock/js/contentscript-extra.js +662 -0
- package/extensions/ublock/js/contentscript.js +1366 -0
- package/extensions/ublock/js/contextmenu.js +270 -0
- package/extensions/ublock/js/cosmetic-filtering.js +983 -0
- package/extensions/ublock/js/dashboard-common.js +215 -0
- package/extensions/ublock/js/dashboard.js +166 -0
- package/extensions/ublock/js/devtools.js +184 -0
- package/extensions/ublock/js/diff-updater.js +288 -0
- package/extensions/ublock/js/document-blocked.js +230 -0
- package/extensions/ublock/js/dom.js +213 -0
- package/extensions/ublock/js/dyna-rules.js +678 -0
- package/extensions/ublock/js/dynamic-net-filtering.js +488 -0
- package/extensions/ublock/js/epicker-ui.js +924 -0
- package/extensions/ublock/js/fa-icons.js +129 -0
- package/extensions/ublock/js/filtering-context.js +461 -0
- package/extensions/ublock/js/filtering-engines.js +50 -0
- package/extensions/ublock/js/hnswitches.js +289 -0
- package/extensions/ublock/js/hntrie.js +780 -0
- package/extensions/ublock/js/html-filtering.js +465 -0
- package/extensions/ublock/js/httpheader-filtering.js +213 -0
- package/extensions/ublock/js/i18n.js +346 -0
- package/extensions/ublock/js/is-webrtc-supported.js +52 -0
- package/extensions/ublock/js/logger-ui-inspector.js +652 -0
- package/extensions/ublock/js/logger-ui.js +3028 -0
- package/extensions/ublock/js/logger.js +84 -0
- package/extensions/ublock/js/lz4.js +190 -0
- package/extensions/ublock/js/messaging.js +2095 -0
- package/extensions/ublock/js/pagestore.js +1140 -0
- package/extensions/ublock/js/popup-fenix.js +1529 -0
- package/extensions/ublock/js/redirect-engine.js +494 -0
- package/extensions/ublock/js/redirect-resources.js +193 -0
- package/extensions/ublock/js/reverselookup-worker.js +287 -0
- package/extensions/ublock/js/reverselookup.js +223 -0
- package/extensions/ublock/js/scriptlet-filtering.js +556 -0
- package/extensions/ublock/js/scriptlets/cosmetic-logger.js +376 -0
- package/extensions/ublock/js/scriptlets/cosmetic-off.js +48 -0
- package/extensions/ublock/js/scriptlets/cosmetic-on.js +48 -0
- package/extensions/ublock/js/scriptlets/cosmetic-report.js +142 -0
- package/extensions/ublock/js/scriptlets/dom-inspector.js +906 -0
- package/extensions/ublock/js/scriptlets/dom-survey-elements.js +72 -0
- package/extensions/ublock/js/scriptlets/dom-survey-scripts.js +126 -0
- package/extensions/ublock/js/scriptlets/epicker.js +1365 -0
- package/extensions/ublock/js/scriptlets/load-3p-css.js +67 -0
- package/extensions/ublock/js/scriptlets/load-large-media-all.js +62 -0
- package/extensions/ublock/js/scriptlets/load-large-media-interactive.js +299 -0
- package/extensions/ublock/js/scriptlets/noscript-spoof.js +89 -0
- package/extensions/ublock/js/scriptlets/should-inject-contentscript.js +40 -0
- package/extensions/ublock/js/scriptlets/subscriber.js +113 -0
- package/extensions/ublock/js/scriptlets/updater.js +101 -0
- package/extensions/ublock/js/settings.js +317 -0
- package/extensions/ublock/js/start.js +509 -0
- package/extensions/ublock/js/static-dnr-filtering.js +497 -0
- package/extensions/ublock/js/static-ext-filtering-db.js +171 -0
- package/extensions/ublock/js/static-ext-filtering.js +184 -0
- package/extensions/ublock/js/static-filtering-io.js +144 -0
- package/extensions/ublock/js/static-filtering-parser.js +4459 -0
- package/extensions/ublock/js/static-net-filtering.js +5631 -0
- package/extensions/ublock/js/storage.js +1683 -0
- package/extensions/ublock/js/support.js +335 -0
- package/extensions/ublock/js/tab.js +1178 -0
- package/extensions/ublock/js/tasks.js +42 -0
- package/extensions/ublock/js/text-encode.js +275 -0
- package/extensions/ublock/js/text-utils.js +107 -0
- package/extensions/ublock/js/theme.js +151 -0
- package/extensions/ublock/js/traffic.js +1260 -0
- package/extensions/ublock/js/ublock.js +696 -0
- package/extensions/ublock/js/uri-utils.js +175 -0
- package/extensions/ublock/js/url-net-filtering.js +336 -0
- package/extensions/ublock/js/utils.js +208 -0
- package/extensions/ublock/js/vapi-background-ext.js +254 -0
- package/extensions/ublock/js/vapi-background.js +1802 -0
- package/extensions/ublock/js/vapi-client-extra.js +312 -0
- package/extensions/ublock/js/vapi-client.js +280 -0
- package/extensions/ublock/js/vapi-common.js +308 -0
- package/extensions/ublock/js/vapi.js +89 -0
- package/extensions/ublock/js/wasm/README.md +24 -0
- package/extensions/ublock/js/wasm/biditrie.wasm +0 -0
- package/extensions/ublock/js/wasm/biditrie.wat +728 -0
- package/extensions/ublock/js/wasm/hntrie.wasm +0 -0
- package/extensions/ublock/js/wasm/hntrie.wat +724 -0
- package/extensions/ublock/js/webext.js +164 -0
- package/extensions/ublock/js/whitelist.js +258 -0
- package/extensions/ublock/lib/codemirror/LICENSE +21 -0
- package/extensions/ublock/lib/codemirror/README.md +47 -0
- package/extensions/ublock/lib/codemirror/addon/comment/comment.js +211 -0
- package/extensions/ublock/lib/codemirror/addon/display/panel.js +133 -0
- package/extensions/ublock/lib/codemirror/addon/edit/closebrackets.js +201 -0
- package/extensions/ublock/lib/codemirror/addon/edit/matchbrackets.js +160 -0
- package/extensions/ublock/lib/codemirror/addon/fold/foldcode.js +157 -0
- package/extensions/ublock/lib/codemirror/addon/fold/foldgutter.css +20 -0
- package/extensions/ublock/lib/codemirror/addon/fold/foldgutter.js +163 -0
- package/extensions/ublock/lib/codemirror/addon/hint/show-hint.css +36 -0
- package/extensions/ublock/lib/codemirror/addon/hint/show-hint.js +509 -0
- package/extensions/ublock/lib/codemirror/addon/merge/merge.css +119 -0
- package/extensions/ublock/lib/codemirror/addon/merge/merge.js +1006 -0
- package/extensions/ublock/lib/codemirror/addon/scroll/annotatescrollbar.js +128 -0
- package/extensions/ublock/lib/codemirror/addon/search/matchesonscrollbar.css +8 -0
- package/extensions/ublock/lib/codemirror/addon/search/searchcursor.js +296 -0
- package/extensions/ublock/lib/codemirror/addon/selection/active-line.js +72 -0
- package/extensions/ublock/lib/codemirror/lib/codemirror.css +350 -0
- package/extensions/ublock/lib/codemirror/lib/codemirror.js +9800 -0
- package/extensions/ublock/lib/codemirror/mode/css/css.js +864 -0
- package/extensions/ublock/lib/codemirror/mode/htmlmixed/htmlmixed.js +153 -0
- package/extensions/ublock/lib/codemirror/mode/javascript/javascript.js +942 -0
- package/extensions/ublock/lib/codemirror/mode/xml/xml.js +413 -0
- package/extensions/ublock/lib/codemirror/theme/night.css +27 -0
- package/extensions/ublock/lib/csstree/LICENSE +19 -0
- package/extensions/ublock/lib/csstree/css-tree.js +17 -0
- package/extensions/ublock/lib/diff/README.md +34 -0
- package/extensions/ublock/lib/diff/swatinem_diff.js +272 -0
- package/extensions/ublock/lib/hsluv/LICENSE +20 -0
- package/extensions/ublock/lib/hsluv/README +3 -0
- package/extensions/ublock/lib/hsluv/hsluv-0.1.0.min.js +8 -0
- package/extensions/ublock/lib/js-beautify/LICENSE +9 -0
- package/extensions/ublock/lib/js-beautify/README +5 -0
- package/extensions/ublock/lib/js-beautify/beautifier.min.js +2 -0
- package/extensions/ublock/lib/lz4/README.md +52 -0
- package/extensions/ublock/lib/lz4/lz4-block-codec-any.js +151 -0
- package/extensions/ublock/lib/lz4/lz4-block-codec-js.js +297 -0
- package/extensions/ublock/lib/lz4/lz4-block-codec-wasm.js +195 -0
- package/extensions/ublock/lib/lz4/lz4-block-codec.wasm +0 -0
- package/extensions/ublock/lib/lz4/lz4-block-codec.wat +745 -0
- package/extensions/ublock/lib/publicsuffixlist/publicsuffixlist.js +641 -0
- package/extensions/ublock/lib/publicsuffixlist/wasm/README.md +29 -0
- package/extensions/ublock/lib/publicsuffixlist/wasm/publicsuffixlist.wasm +0 -0
- package/extensions/ublock/lib/publicsuffixlist/wasm/publicsuffixlist.wat +322 -0
- package/extensions/ublock/lib/punycode.js +493 -0
- package/extensions/ublock/lib/regexanalyzer/CHANGES.md +15 -0
- package/extensions/ublock/lib/regexanalyzer/README.md +14 -0
- package/extensions/ublock/lib/regexanalyzer/regex.js +2276 -0
- package/extensions/ublock/logger-ui.html +232 -0
- package/extensions/ublock/managed_storage.json +73 -0
- package/extensions/ublock/manifest.json +115 -0
- package/extensions/ublock/no-dashboard.html +27 -0
- package/extensions/ublock/popup-fenix.html +114 -0
- package/extensions/ublock/settings.html +98 -0
- package/extensions/ublock/support.html +131 -0
- package/extensions/ublock/web_accessible_resources/1x1.gif +0 -0
- package/extensions/ublock/web_accessible_resources/2x2.png +0 -0
- package/extensions/ublock/web_accessible_resources/32x32.png +0 -0
- package/extensions/ublock/web_accessible_resources/3x2.png +0 -0
- package/extensions/ublock/web_accessible_resources/README.txt +11 -0
- package/extensions/ublock/web_accessible_resources/addthis_widget.js +39 -0
- package/extensions/ublock/web_accessible_resources/amazon_ads.js +70 -0
- package/extensions/ublock/web_accessible_resources/amazon_apstag.js +62 -0
- package/extensions/ublock/web_accessible_resources/ampproject_v0.js +34 -0
- package/extensions/ublock/web_accessible_resources/chartbeat.js +30 -0
- package/extensions/ublock/web_accessible_resources/click2load.html +28 -0
- package/extensions/ublock/web_accessible_resources/doubleclick_instream_ad_status.js +1 -0
- package/extensions/ublock/web_accessible_resources/empty +0 -0
- package/extensions/ublock/web_accessible_resources/epicker-ui.html +76 -0
- package/extensions/ublock/web_accessible_resources/fingerprint2.js +55 -0
- package/extensions/ublock/web_accessible_resources/fingerprint3.js +45 -0
- package/extensions/ublock/web_accessible_resources/google-analytics_analytics.js +110 -0
- package/extensions/ublock/web_accessible_resources/google-analytics_cx_api.js +36 -0
- package/extensions/ublock/web_accessible_resources/google-analytics_ga.js +130 -0
- package/extensions/ublock/web_accessible_resources/google-analytics_inpage_linkid.js +28 -0
- package/extensions/ublock/web_accessible_resources/google-ima.js +855 -0
- package/extensions/ublock/web_accessible_resources/googlesyndication_adsbygoogle.js +56 -0
- package/extensions/ublock/web_accessible_resources/googletagmanager_gtm.js +43 -0
- package/extensions/ublock/web_accessible_resources/googletagservices_gpt.js +153 -0
- package/extensions/ublock/web_accessible_resources/hd-main.js +46 -0
- package/extensions/ublock/web_accessible_resources/ligatus_angular-tag.js +29 -0
- package/extensions/ublock/web_accessible_resources/monkeybroker.js +43 -0
- package/extensions/ublock/web_accessible_resources/mxpnl_mixpanel.js +51 -0
- package/extensions/ublock/web_accessible_resources/nobab.js +87 -0
- package/extensions/ublock/web_accessible_resources/nobab2.js +42 -0
- package/extensions/ublock/web_accessible_resources/noeval-silent.js +28 -0
- package/extensions/ublock/web_accessible_resources/noeval.js +30 -0
- package/extensions/ublock/web_accessible_resources/nofab.js +67 -0
- package/extensions/ublock/web_accessible_resources/noop-0.1s.mp3 +0 -0
- package/extensions/ublock/web_accessible_resources/noop-0.5s.mp3 +0 -0
- package/extensions/ublock/web_accessible_resources/noop-1s.mp4 +0 -0
- package/extensions/ublock/web_accessible_resources/noop-vmap1.0.xml +1 -0
- package/extensions/ublock/web_accessible_resources/noop.css +1 -0
- package/extensions/ublock/web_accessible_resources/noop.html +5 -0
- package/extensions/ublock/web_accessible_resources/noop.js +3 -0
- package/extensions/ublock/web_accessible_resources/noop.json +1 -0
- package/extensions/ublock/web_accessible_resources/noop.txt +1 -0
- package/extensions/ublock/web_accessible_resources/outbrain-widget.js +72 -0
- package/extensions/ublock/web_accessible_resources/popads-dummy.js +30 -0
- package/extensions/ublock/web_accessible_resources/popads.js +40 -0
- package/extensions/ublock/web_accessible_resources/prebid-ads.js +26 -0
- package/extensions/ublock/web_accessible_resources/scorecardresearch_beacon.js +31 -0
- package/extensions/ublock/whitelist.html +63 -0
- package/external/.gitkeep +0 -0
- package/fonts/Calibri Bold Italic.ttf +0 -0
- package/fonts/Calibri Bold.TTF +0 -0
- package/fonts/Calibri Italic.ttf +0 -0
- package/fonts/Calibri Light Italic.ttf +0 -0
- package/fonts/Calibri Light.ttf +0 -0
- package/fonts/Calibri Regular.ttf +0 -0
- package/fonts/Emoji.ttf +0 -0
- package/fonts/SegoeUI-Bold.ttf +0 -0
- package/fonts/SegoeUI-Light.ttf +0 -0
- package/fonts/SegoeUI-Regular.ttf +0 -0
- package/fonts/SegoeUI-Semibold.ttf +0 -0
- package/fonts/SegoeUI-Semilight.ttf +0 -0
- package/fonts/Tahoma Bold.ttf +0 -0
- package/fonts/Tahoma.ttf +0 -0
- package/fonts/fonts.conf +21 -0
- package/package.json +177 -0
- package/scripts/build-function.js +18 -0
- package/scripts/build-open-api.js +274 -0
- package/scripts/build-schemas.js +86 -0
- package/scripts/build-selectors.js +36 -0
- package/scripts/clean.js +7 -0
- package/scripts/install-adblock.js +45 -0
- package/scripts/install-cdp-json.js +37 -0
- package/scripts/start.sh +30 -0
- package/scripts/test.sh +17 -0
- package/src/browserless.ts +253 -0
- package/src/browsers/cdp-chromium.ts +422 -0
- package/src/browsers/index.ts +296 -0
- package/src/browsers/playwright-chromium.ts +168 -0
- package/src/browsers/playwright-firefox.ts +161 -0
- package/src/browsers/playwright-webkit.ts +161 -0
- package/src/config.ts +426 -0
- package/src/constants.ts +4 -0
- package/src/exports.ts +23 -0
- package/src/file-system.ts +54 -0
- package/src/hooks.ts +37 -0
- package/src/http.ts +157 -0
- package/src/index.ts +41 -0
- package/src/limiter.spec.ts +365 -0
- package/src/limiter.ts +225 -0
- package/src/metrics.spec.ts +49 -0
- package/src/metrics.ts +108 -0
- package/src/mime-types.ts +332 -0
- package/src/monitoring.ts +53 -0
- package/src/routes/chromium/http/content-post.ts +238 -0
- package/src/routes/chromium/http/download-post.ts +162 -0
- package/src/routes/chromium/http/function-post.ts +98 -0
- package/src/routes/chromium/http/pdf-post.ts +234 -0
- package/src/routes/chromium/http/performance.ts +71 -0
- package/src/routes/chromium/http/scrape-post.ts +439 -0
- package/src/routes/chromium/http/screenshot-post.ts +262 -0
- package/src/routes/chromium/tests/content.spec.ts +340 -0
- package/src/routes/chromium/tests/download.spec.ts +77 -0
- package/src/routes/chromium/tests/function.spec.ts +279 -0
- package/src/routes/chromium/tests/pdf.spec.ts +375 -0
- package/src/routes/chromium/tests/performance.spec.ts +155 -0
- package/src/routes/chromium/tests/scrape.spec.ts +414 -0
- package/src/routes/chromium/tests/screenshot.spec.ts +387 -0
- package/src/routes/chromium/tests/websocket.spec.ts +407 -0
- package/src/routes/chromium/utils/function/client.ts +99 -0
- package/src/routes/chromium/utils/function/handler.ts +172 -0
- package/src/routes/chromium/utils/performance/child.ts +38 -0
- package/src/routes/chromium/utils/performance/main.ts +90 -0
- package/src/routes/chromium/utils/performance/types.ts +24 -0
- package/src/routes/chromium/ws/browser.ts +31 -0
- package/src/routes/chromium/ws/cdp-chromium.ts +31 -0
- package/src/routes/chromium/ws/page.ts +31 -0
- package/src/routes/chromium/ws/playwright-chromium.ts +44 -0
- package/src/routes/firefox/tests/websocket.spec.ts +146 -0
- package/src/routes/firefox/ws/playwright-firefox.ts +44 -0
- package/src/routes/management/http/config-get.ts +82 -0
- package/src/routes/management/http/metrics-get.ts +43 -0
- package/src/routes/management/http/metrics-total-get.ts +89 -0
- package/src/routes/management/http/sessions-get.ts +39 -0
- package/src/routes/management/http/static-get.ts +109 -0
- package/src/routes/management/tests/management.spec.ts +71 -0
- package/src/routes/webkit/tests/websocket.spec.ts +146 -0
- package/src/routes/webkit/ws/playwright-webkit.ts +44 -0
- package/src/server.ts +609 -0
- package/src/shim.spec.ts +154 -0
- package/src/shim.ts +78 -0
- package/src/types.ts +470 -0
- package/src/utils.ts +787 -0
- package/src/webhooks.ts +50 -0
- package/static/docs/browserless-logo.png +0 -0
- package/static/docs/docs.js +2 -0
- package/static/docs/index.html +71 -0
- package/static/docs/swagger.json +4232 -0
- package/static/favicon-32x32.png +0 -0
- package/static/function/client.js +31623 -0
- package/static/function/index.html +12 -0
- package/tsconfig.json +31 -0
|
@@ -0,0 +1,1290 @@
|
|
|
1
|
+
{
|
|
2
|
+
"extName": {
|
|
3
|
+
"message": "uBlock Origin",
|
|
4
|
+
"description": "extension name."
|
|
5
|
+
},
|
|
6
|
+
"extShortDesc": {
|
|
7
|
+
"message": "終於有套使用不多的 CPU 及記憶體資源的高效率阻擋器。",
|
|
8
|
+
"description": "this will be in the Chrome web store: must be 132 characters or less"
|
|
9
|
+
},
|
|
10
|
+
"dashboardName": {
|
|
11
|
+
"message": "uBlock₀ — 控制台",
|
|
12
|
+
"description": "English: uBlock₀ — Dashboard"
|
|
13
|
+
},
|
|
14
|
+
"dashboardUnsavedWarning": {
|
|
15
|
+
"message": "警告!您有尚未儲存的變更",
|
|
16
|
+
"description": "A warning in the dashboard when navigating away from unsaved changes"
|
|
17
|
+
},
|
|
18
|
+
"dashboardUnsavedWarningStay": {
|
|
19
|
+
"message": "留下",
|
|
20
|
+
"description": "Label for button to prevent navigating away from unsaved changes"
|
|
21
|
+
},
|
|
22
|
+
"dashboardUnsavedWarningIgnore": {
|
|
23
|
+
"message": "忽略",
|
|
24
|
+
"description": "Label for button to ignore unsaved changes"
|
|
25
|
+
},
|
|
26
|
+
"settingsPageName": {
|
|
27
|
+
"message": "設定",
|
|
28
|
+
"description": "appears as tab name in dashboard"
|
|
29
|
+
},
|
|
30
|
+
"3pPageName": {
|
|
31
|
+
"message": "過濾規則清單",
|
|
32
|
+
"description": "appears as tab name in dashboard"
|
|
33
|
+
},
|
|
34
|
+
"1pPageName": {
|
|
35
|
+
"message": "自訂靜態過濾規則",
|
|
36
|
+
"description": "appears as tab name in dashboard"
|
|
37
|
+
},
|
|
38
|
+
"rulesPageName": {
|
|
39
|
+
"message": "自訂動態過濾規則",
|
|
40
|
+
"description": "appears as tab name in dashboard"
|
|
41
|
+
},
|
|
42
|
+
"whitelistPageName": {
|
|
43
|
+
"message": "受信任網站",
|
|
44
|
+
"description": "appears as tab name in dashboard"
|
|
45
|
+
},
|
|
46
|
+
"shortcutsPageName": {
|
|
47
|
+
"message": "快速鍵",
|
|
48
|
+
"description": "appears as tab name in dashboard"
|
|
49
|
+
},
|
|
50
|
+
"statsPageName": {
|
|
51
|
+
"message": "uBlock₀ — 記錄器",
|
|
52
|
+
"description": "Title for the logger window"
|
|
53
|
+
},
|
|
54
|
+
"aboutPageName": {
|
|
55
|
+
"message": "關於",
|
|
56
|
+
"description": "appears as tab name in dashboard"
|
|
57
|
+
},
|
|
58
|
+
"supportPageName": {
|
|
59
|
+
"message": "支援",
|
|
60
|
+
"description": "appears as tab name in dashboard"
|
|
61
|
+
},
|
|
62
|
+
"assetViewerPageName": {
|
|
63
|
+
"message": "uBlock₀ — 資源檢視器",
|
|
64
|
+
"description": "Title for the asset viewer page"
|
|
65
|
+
},
|
|
66
|
+
"advancedSettingsPageName": {
|
|
67
|
+
"message": "進階設定",
|
|
68
|
+
"description": "Title for the advanced settings page"
|
|
69
|
+
},
|
|
70
|
+
"popupPowerSwitchInfo": {
|
|
71
|
+
"message": "點擊:對此網站 停用/啟用 uBlock₀ 。\n\nCtrl + 點擊:僅在此頁面停用 uBlock₀ 。",
|
|
72
|
+
"description": "English: Click: disable/enable uBlock₀ for this site.\n\nCtrl+click: disable uBlock₀ only on this page."
|
|
73
|
+
},
|
|
74
|
+
"popupPowerSwitchInfo1": {
|
|
75
|
+
"message": "點擊:在此網站停用 uBlock₀ 。\n\nCtrl + 點擊:僅在此頁面停用 uBlock₀ 。",
|
|
76
|
+
"description": "Message to be read by screen readers"
|
|
77
|
+
},
|
|
78
|
+
"popupPowerSwitchInfo2": {
|
|
79
|
+
"message": "點擊以在此網站啟用 uBlock₀ 。",
|
|
80
|
+
"description": "Message to be read by screen readers"
|
|
81
|
+
},
|
|
82
|
+
"popupBlockedRequestPrompt": {
|
|
83
|
+
"message": "已阻擋的連線請求",
|
|
84
|
+
"description": "English: requests blocked"
|
|
85
|
+
},
|
|
86
|
+
"popupBlockedOnThisPagePrompt": {
|
|
87
|
+
"message": "在此頁面",
|
|
88
|
+
"description": "English: on this page"
|
|
89
|
+
},
|
|
90
|
+
"popupBlockedStats": {
|
|
91
|
+
"message": "{{count}} ({{percent}}%)",
|
|
92
|
+
"description": "Example: 15 (13%)"
|
|
93
|
+
},
|
|
94
|
+
"popupBlockedSinceInstallPrompt": {
|
|
95
|
+
"message": "自安裝後",
|
|
96
|
+
"description": "English: since install"
|
|
97
|
+
},
|
|
98
|
+
"popupOr": {
|
|
99
|
+
"message": "或",
|
|
100
|
+
"description": "English: or"
|
|
101
|
+
},
|
|
102
|
+
"popupBlockedOnThisPage_v2": {
|
|
103
|
+
"message": "此頁面已阻擋",
|
|
104
|
+
"description": "For the new mobile-friendly popup design"
|
|
105
|
+
},
|
|
106
|
+
"popupBlockedSinceInstall_v2": {
|
|
107
|
+
"message": "安裝後已阻擋",
|
|
108
|
+
"description": "For the new mobile-friendly popup design"
|
|
109
|
+
},
|
|
110
|
+
"popupDomainsConnected_v2": {
|
|
111
|
+
"message": "已連接的網域",
|
|
112
|
+
"description": "For the new mobile-friendly popup design"
|
|
113
|
+
},
|
|
114
|
+
"popupTipDashboard": {
|
|
115
|
+
"message": "開啟控制台",
|
|
116
|
+
"description": "English: Click to open the dashboard"
|
|
117
|
+
},
|
|
118
|
+
"popupTipZapper": {
|
|
119
|
+
"message": "進入元素臨時移除模式",
|
|
120
|
+
"description": "Tooltip for the element-zapper icon in the popup panel"
|
|
121
|
+
},
|
|
122
|
+
"popupTipPicker": {
|
|
123
|
+
"message": "進入元素選擇器模式",
|
|
124
|
+
"description": "English: Enter element picker mode"
|
|
125
|
+
},
|
|
126
|
+
"popupTipLog": {
|
|
127
|
+
"message": "開啟記錄器",
|
|
128
|
+
"description": "Tooltip used for the logger icon in the panel"
|
|
129
|
+
},
|
|
130
|
+
"popupTipReport": {
|
|
131
|
+
"message": "回報此網站的問題",
|
|
132
|
+
"description": "Tooltip used for the 'chat' icon in the panel"
|
|
133
|
+
},
|
|
134
|
+
"popupTipNoPopups": {
|
|
135
|
+
"message": "切換是否阻擋此網站的所有彈出型視窗",
|
|
136
|
+
"description": "Tooltip for the no-popups per-site switch"
|
|
137
|
+
},
|
|
138
|
+
"popupTipNoPopups1": {
|
|
139
|
+
"message": "點擊以阻擋此網站的所有彈出式視窗",
|
|
140
|
+
"description": "Tooltip for the no-popups per-site switch"
|
|
141
|
+
},
|
|
142
|
+
"popupTipNoPopups2": {
|
|
143
|
+
"message": "點擊以停止阻擋此網站的所有彈出式視窗",
|
|
144
|
+
"description": "Tooltip for the no-popups per-site switch"
|
|
145
|
+
},
|
|
146
|
+
"popupTipNoLargeMedia": {
|
|
147
|
+
"message": "切換是否封鎖此網站的大型媒體元素",
|
|
148
|
+
"description": "Tooltip for the no-large-media per-site switch"
|
|
149
|
+
},
|
|
150
|
+
"popupTipNoLargeMedia1": {
|
|
151
|
+
"message": "點擊以封鎖此網站的大型媒體元素",
|
|
152
|
+
"description": "Tooltip for the no-large-media per-site switch"
|
|
153
|
+
},
|
|
154
|
+
"popupTipNoLargeMedia2": {
|
|
155
|
+
"message": "點擊以停止封鎖此網站的大型媒體元素",
|
|
156
|
+
"description": "Tooltip for the no-large-media per-site switch"
|
|
157
|
+
},
|
|
158
|
+
"popupTipNoCosmeticFiltering": {
|
|
159
|
+
"message": "切換是否在此網站過濾網頁元素",
|
|
160
|
+
"description": "Tooltip for the no-cosmetic-filtering per-site switch"
|
|
161
|
+
},
|
|
162
|
+
"popupTipNoCosmeticFiltering1": {
|
|
163
|
+
"message": "點擊以停用此網站的網頁元素過濾",
|
|
164
|
+
"description": "Tooltip for the no-cosmetic-filtering per-site switch"
|
|
165
|
+
},
|
|
166
|
+
"popupTipNoCosmeticFiltering2": {
|
|
167
|
+
"message": "點擊以啟用此網站的網頁元素過濾",
|
|
168
|
+
"description": "Tooltip for the no-cosmetic-filtering per-site switch"
|
|
169
|
+
},
|
|
170
|
+
"popupTipNoRemoteFonts": {
|
|
171
|
+
"message": "切換是否封鎖此網站的遠端字體",
|
|
172
|
+
"description": "Tooltip for the no-remote-fonts per-site switch"
|
|
173
|
+
},
|
|
174
|
+
"popupTipNoRemoteFonts1": {
|
|
175
|
+
"message": "點擊以封鎖此網站的遠端字體",
|
|
176
|
+
"description": "Tooltip for the no-remote-fonts per-site switch"
|
|
177
|
+
},
|
|
178
|
+
"popupTipNoRemoteFonts2": {
|
|
179
|
+
"message": "點擊以停止封鎖此網站的遠端字體",
|
|
180
|
+
"description": "Tooltip for the no-remote-fonts per-site switch"
|
|
181
|
+
},
|
|
182
|
+
"popupTipNoScripting1": {
|
|
183
|
+
"message": "點擊以停用此網站的 JavaScript",
|
|
184
|
+
"description": "Tooltip for the no-scripting per-site switch"
|
|
185
|
+
},
|
|
186
|
+
"popupTipNoScripting2": {
|
|
187
|
+
"message": "點擊以使重新啟用此網站的 JavaScript ",
|
|
188
|
+
"description": "Tooltip for the no-scripting per-site switch"
|
|
189
|
+
},
|
|
190
|
+
"popupNoPopups_v2": {
|
|
191
|
+
"message": "彈出式視窗",
|
|
192
|
+
"description": "Caption for the no-popups per-site switch"
|
|
193
|
+
},
|
|
194
|
+
"popupNoLargeMedia_v2": {
|
|
195
|
+
"message": "大型媒體元素",
|
|
196
|
+
"description": "Caption for the no-large-media per-site switch"
|
|
197
|
+
},
|
|
198
|
+
"popupNoCosmeticFiltering_v2": {
|
|
199
|
+
"message": "網頁元素過濾",
|
|
200
|
+
"description": "Caption for the no-cosmetic-filtering per-site switch"
|
|
201
|
+
},
|
|
202
|
+
"popupNoRemoteFonts_v2": {
|
|
203
|
+
"message": "遠端字體",
|
|
204
|
+
"description": "Caption for the no-remote-fonts per-site switch"
|
|
205
|
+
},
|
|
206
|
+
"popupNoScripting_v2": {
|
|
207
|
+
"message": "JavaScript",
|
|
208
|
+
"description": "Caption for the no-scripting per-site switch"
|
|
209
|
+
},
|
|
210
|
+
"popupMoreButton_v2": {
|
|
211
|
+
"message": "更多",
|
|
212
|
+
"description": "Label to be used to show popup panel sections"
|
|
213
|
+
},
|
|
214
|
+
"popupLessButton_v2": {
|
|
215
|
+
"message": "更少",
|
|
216
|
+
"description": "Label to be used to hide popup panel sections"
|
|
217
|
+
},
|
|
218
|
+
"popupTipGlobalRules": {
|
|
219
|
+
"message": "全域規則:此欄位的規則會套用至所有網站。",
|
|
220
|
+
"description": "Tooltip when hovering the top-most cell of the global-rules column."
|
|
221
|
+
},
|
|
222
|
+
"popupTipLocalRules": {
|
|
223
|
+
"message": "區域規則:此欄位的規則僅會套用至目前網站。\n區域規則會覆蓋過全域規則。",
|
|
224
|
+
"description": "Tooltip when hovering the top-most cell of the local-rules column."
|
|
225
|
+
},
|
|
226
|
+
"popupTipSaveRules": {
|
|
227
|
+
"message": "點擊此處讓變更永久生效。",
|
|
228
|
+
"description": "Tooltip when hovering over the padlock in the dynamic filtering pane."
|
|
229
|
+
},
|
|
230
|
+
"popupTipRevertRules": {
|
|
231
|
+
"message": "點擊以撤銷變更。",
|
|
232
|
+
"description": "Tooltip when hovering over the eraser in the dynamic filtering pane."
|
|
233
|
+
},
|
|
234
|
+
"popupAnyRulePrompt": {
|
|
235
|
+
"message": "全部",
|
|
236
|
+
"description": ""
|
|
237
|
+
},
|
|
238
|
+
"popupImageRulePrompt": {
|
|
239
|
+
"message": "圖片",
|
|
240
|
+
"description": ""
|
|
241
|
+
},
|
|
242
|
+
"popup3pAnyRulePrompt": {
|
|
243
|
+
"message": "第三方",
|
|
244
|
+
"description": ""
|
|
245
|
+
},
|
|
246
|
+
"popup3pPassiveRulePrompt": {
|
|
247
|
+
"message": "第三方 階層式樣式表 / 圖片",
|
|
248
|
+
"description": ""
|
|
249
|
+
},
|
|
250
|
+
"popupInlineScriptRulePrompt": {
|
|
251
|
+
"message": "內聯腳本",
|
|
252
|
+
"description": ""
|
|
253
|
+
},
|
|
254
|
+
"popup1pScriptRulePrompt": {
|
|
255
|
+
"message": "第一方腳本",
|
|
256
|
+
"description": ""
|
|
257
|
+
},
|
|
258
|
+
"popup3pScriptRulePrompt": {
|
|
259
|
+
"message": "第三方腳本",
|
|
260
|
+
"description": ""
|
|
261
|
+
},
|
|
262
|
+
"popup3pFrameRulePrompt": {
|
|
263
|
+
"message": "第三方框架",
|
|
264
|
+
"description": ""
|
|
265
|
+
},
|
|
266
|
+
"popupHitDomainCountPrompt": {
|
|
267
|
+
"message": "已連結的網域",
|
|
268
|
+
"description": "appears in popup"
|
|
269
|
+
},
|
|
270
|
+
"popupHitDomainCount": {
|
|
271
|
+
"message": "{{count}} / {{total}}",
|
|
272
|
+
"description": "appears in popup"
|
|
273
|
+
},
|
|
274
|
+
"popupVersion": {
|
|
275
|
+
"message": "版本",
|
|
276
|
+
"description": "Example of use: Version 1.26.4"
|
|
277
|
+
},
|
|
278
|
+
"popup3pScriptFilter": {
|
|
279
|
+
"message": "腳本",
|
|
280
|
+
"description": "Appears as an option to filter out firewall rows"
|
|
281
|
+
},
|
|
282
|
+
"popup3pFrameFilter": {
|
|
283
|
+
"message": "框架",
|
|
284
|
+
"description": "Appears as an option to filter out firewall rows"
|
|
285
|
+
},
|
|
286
|
+
"pickerCreate": {
|
|
287
|
+
"message": "建立",
|
|
288
|
+
"description": "English: Create"
|
|
289
|
+
},
|
|
290
|
+
"pickerPick": {
|
|
291
|
+
"message": "選擇",
|
|
292
|
+
"description": "English: Pick"
|
|
293
|
+
},
|
|
294
|
+
"pickerQuit": {
|
|
295
|
+
"message": "放棄",
|
|
296
|
+
"description": "English: Quit"
|
|
297
|
+
},
|
|
298
|
+
"pickerPreview": {
|
|
299
|
+
"message": "預覽",
|
|
300
|
+
"description": "Element picker preview mode: will cause the elements matching the current filter to be removed from the page"
|
|
301
|
+
},
|
|
302
|
+
"pickerNetFilters": {
|
|
303
|
+
"message": "網址過濾規則",
|
|
304
|
+
"description": "English: header for a type of filter in the element picker dialog"
|
|
305
|
+
},
|
|
306
|
+
"pickerCosmeticFilters": {
|
|
307
|
+
"message": "元素隱藏過濾規則",
|
|
308
|
+
"description": "English: Cosmetic filters"
|
|
309
|
+
},
|
|
310
|
+
"pickerCosmeticFiltersHint": {
|
|
311
|
+
"message": "點擊,按住 Ctrl 鍵點擊",
|
|
312
|
+
"description": "English: Click, Ctrl-click"
|
|
313
|
+
},
|
|
314
|
+
"pickerContextMenuEntry": {
|
|
315
|
+
"message": "阻擋元素…",
|
|
316
|
+
"description": "An entry in the browser's contextual menu"
|
|
317
|
+
},
|
|
318
|
+
"settingsCollapseBlockedPrompt": {
|
|
319
|
+
"message": "隱藏已阻擋元素的佔位元素",
|
|
320
|
+
"description": "English: Hide placeholders of blocked elements"
|
|
321
|
+
},
|
|
322
|
+
"settingsIconBadgePrompt": {
|
|
323
|
+
"message": "在圖示上顯示被阻擋的連線請求的數量",
|
|
324
|
+
"description": "English: Show the number of blocked requests on the icon"
|
|
325
|
+
},
|
|
326
|
+
"settingsTooltipsPrompt": {
|
|
327
|
+
"message": "關閉提示文字功能",
|
|
328
|
+
"description": "A checkbox in the Settings pane"
|
|
329
|
+
},
|
|
330
|
+
"settingsContextMenuPrompt": {
|
|
331
|
+
"message": "將 uBlock Origin 加入右鍵選單",
|
|
332
|
+
"description": "English: Make use of context menu where appropriate"
|
|
333
|
+
},
|
|
334
|
+
"settingsColorBlindPrompt": {
|
|
335
|
+
"message": "使用對色盲友善的色彩",
|
|
336
|
+
"description": "English: Color-blind friendly"
|
|
337
|
+
},
|
|
338
|
+
"settingsAppearance": {
|
|
339
|
+
"message": "外觀",
|
|
340
|
+
"description": "Section for controlling user interface appearance"
|
|
341
|
+
},
|
|
342
|
+
"settingsThemeLabel": {
|
|
343
|
+
"message": "佈景主題",
|
|
344
|
+
"description": "Label for checkbox to enable a custom dark theme"
|
|
345
|
+
},
|
|
346
|
+
"settingsThemeAccent0Label": {
|
|
347
|
+
"message": "自訂強調顏色",
|
|
348
|
+
"description": "Label for checkbox to pick an accent color"
|
|
349
|
+
},
|
|
350
|
+
"settingsCloudStorageEnabledPrompt": {
|
|
351
|
+
"message": "啟用雲端儲存空間的支援",
|
|
352
|
+
"description": ""
|
|
353
|
+
},
|
|
354
|
+
"settingsAdvancedUserPrompt": {
|
|
355
|
+
"message": "我是進階使用者",
|
|
356
|
+
"description": "Checkbox to let user access advanced, technical features"
|
|
357
|
+
},
|
|
358
|
+
"settingsPrefetchingDisabledPrompt": {
|
|
359
|
+
"message": "停用預先載入模式(避免連線至已阻擋的網路要求)",
|
|
360
|
+
"description": "English: "
|
|
361
|
+
},
|
|
362
|
+
"settingsHyperlinkAuditingDisabledPrompt": {
|
|
363
|
+
"message": "停用超連結監測",
|
|
364
|
+
"description": "English: "
|
|
365
|
+
},
|
|
366
|
+
"settingsWebRTCIPAddressHiddenPrompt": {
|
|
367
|
+
"message": "防止 WebRTC 洩漏本地 IP 位址",
|
|
368
|
+
"description": "English: "
|
|
369
|
+
},
|
|
370
|
+
"settingPerSiteSwitchGroup": {
|
|
371
|
+
"message": "預設行為",
|
|
372
|
+
"description": ""
|
|
373
|
+
},
|
|
374
|
+
"settingPerSiteSwitchGroupSynopsis": {
|
|
375
|
+
"message": "這些預設行為可再依各網站調整",
|
|
376
|
+
"description": ""
|
|
377
|
+
},
|
|
378
|
+
"settingsNoCosmeticFilteringPrompt": {
|
|
379
|
+
"message": "停用元素隱藏過濾規則",
|
|
380
|
+
"description": ""
|
|
381
|
+
},
|
|
382
|
+
"settingsNoLargeMediaPrompt": {
|
|
383
|
+
"message": "封鎖超過 {{input}} KB 的媒體元素",
|
|
384
|
+
"description": ""
|
|
385
|
+
},
|
|
386
|
+
"settingsNoRemoteFontsPrompt": {
|
|
387
|
+
"message": "封鎖遠端字體",
|
|
388
|
+
"description": ""
|
|
389
|
+
},
|
|
390
|
+
"settingsNoScriptingPrompt": {
|
|
391
|
+
"message": "停用 JavaScript",
|
|
392
|
+
"description": "The default state for the per-site no-scripting switch"
|
|
393
|
+
},
|
|
394
|
+
"settingsNoCSPReportsPrompt": {
|
|
395
|
+
"message": "封鎖內容安全策略報告",
|
|
396
|
+
"description": "background information: https://github.com/gorhill/uBlock/issues/3150"
|
|
397
|
+
},
|
|
398
|
+
"settingsUncloakCnamePrompt": {
|
|
399
|
+
"message": "揭露網域真實名稱",
|
|
400
|
+
"description": "background information: https://github.com/uBlockOrigin/uBlock-issues/issues/1513"
|
|
401
|
+
},
|
|
402
|
+
"settingsAdvanced": {
|
|
403
|
+
"message": "進階",
|
|
404
|
+
"description": "Section for controlling advanced-user settings"
|
|
405
|
+
},
|
|
406
|
+
"settingsAdvancedSynopsis": {
|
|
407
|
+
"message": "僅適合技術使用者使用的相關功能。",
|
|
408
|
+
"description": "Description of section controlling advanced-user settings"
|
|
409
|
+
},
|
|
410
|
+
"settingsAdvancedUserSettings": {
|
|
411
|
+
"message": "進階設定",
|
|
412
|
+
"description": "For the tooltip of a link which gives access to advanced settings"
|
|
413
|
+
},
|
|
414
|
+
"settingsLastRestorePrompt": {
|
|
415
|
+
"message": "上次還原:",
|
|
416
|
+
"description": "English: Last restore:"
|
|
417
|
+
},
|
|
418
|
+
"settingsLastBackupPrompt": {
|
|
419
|
+
"message": "上次備份:",
|
|
420
|
+
"description": "English: Last backup:"
|
|
421
|
+
},
|
|
422
|
+
"3pListsOfBlockedHostsPrompt": {
|
|
423
|
+
"message": "目前已使用 {{netFilterCount}} 個網址過濾規則 + {{cosmeticFilterCount}} 個元素隱藏過濾規則:",
|
|
424
|
+
"description": "Appears at the top of the _3rd-party filters_ pane"
|
|
425
|
+
},
|
|
426
|
+
"3pListsOfBlockedHostsPerListStats": {
|
|
427
|
+
"message": "{{used}} / {{total}}",
|
|
428
|
+
"description": "Appears aside each filter list in the _3rd-party filters_ pane"
|
|
429
|
+
},
|
|
430
|
+
"3pAutoUpdatePrompt1": {
|
|
431
|
+
"message": "自動更新過濾規則",
|
|
432
|
+
"description": "A checkbox in the _3rd-party filters_ pane"
|
|
433
|
+
},
|
|
434
|
+
"3pUpdateNow": {
|
|
435
|
+
"message": "立即更新",
|
|
436
|
+
"description": "A button in the in the _3rd-party filters_ pane"
|
|
437
|
+
},
|
|
438
|
+
"3pPurgeAll": {
|
|
439
|
+
"message": "清除所有快取",
|
|
440
|
+
"description": "A button in the in the _3rd-party filters_ pane"
|
|
441
|
+
},
|
|
442
|
+
"3pParseAllABPHideFiltersPrompt1": {
|
|
443
|
+
"message": "解析並套用元素隱藏過濾規則",
|
|
444
|
+
"description": "English: Parse and enforce Adblock+ element hiding filters."
|
|
445
|
+
},
|
|
446
|
+
"3pParseAllABPHideFiltersInfo": {
|
|
447
|
+
"message": "元素隱藏過濾規則 用於隱藏網頁中礙眼,且不能被基於網路請求的過濾引擎所阻擋的元素。",
|
|
448
|
+
"description": "Describes the purpose of the 'Parse and enforce cosmetic filters' feature."
|
|
449
|
+
},
|
|
450
|
+
"3pIgnoreGenericCosmeticFilters": {
|
|
451
|
+
"message": "忽略一般元素隱藏過濾規則",
|
|
452
|
+
"description": "This will cause uBO to ignore all generic cosmetic filters."
|
|
453
|
+
},
|
|
454
|
+
"3pIgnoreGenericCosmeticFiltersInfo": {
|
|
455
|
+
"message": "通用元素隱藏過濾規則 是會套用在所有網頁的元素隱藏過濾規則。啟用此選項會減少每個網頁,因處理一般元素隱藏過濾規則,而增加的記憶體與 CPU 使用量。\n\n建議在效能較差的裝置上啟用此選項。",
|
|
456
|
+
"description": "Describes the purpose of the 'Ignore generic cosmetic filters' feature."
|
|
457
|
+
},
|
|
458
|
+
"3pSuspendUntilListsAreLoaded": {
|
|
459
|
+
"message": "在所有過濾器清單載入完成前暫停網路活動",
|
|
460
|
+
"description": "A checkbox in the 'Filter lists' pane"
|
|
461
|
+
},
|
|
462
|
+
"3pListsOfBlockedHostsHeader": {
|
|
463
|
+
"message": "被阻擋網域的列表",
|
|
464
|
+
"description": "English: Lists of blocked hosts"
|
|
465
|
+
},
|
|
466
|
+
"3pApplyChanges": {
|
|
467
|
+
"message": "套用變更",
|
|
468
|
+
"description": "English: Apply changes"
|
|
469
|
+
},
|
|
470
|
+
"3pGroupDefault": {
|
|
471
|
+
"message": "內建",
|
|
472
|
+
"description": "Filter lists section name"
|
|
473
|
+
},
|
|
474
|
+
"3pGroupAds": {
|
|
475
|
+
"message": "廣告",
|
|
476
|
+
"description": "Filter lists section name"
|
|
477
|
+
},
|
|
478
|
+
"3pGroupPrivacy": {
|
|
479
|
+
"message": "隱私",
|
|
480
|
+
"description": "Filter lists section name"
|
|
481
|
+
},
|
|
482
|
+
"3pGroupMalware": {
|
|
483
|
+
"message": "惡意軟體防護及安全性",
|
|
484
|
+
"description": "Filter lists section name"
|
|
485
|
+
},
|
|
486
|
+
"3pGroupAnnoyances": {
|
|
487
|
+
"message": "嫌惡元素",
|
|
488
|
+
"description": "Filter lists section name"
|
|
489
|
+
},
|
|
490
|
+
"3pGroupMultipurpose": {
|
|
491
|
+
"message": "多用途",
|
|
492
|
+
"description": "Filter lists section name"
|
|
493
|
+
},
|
|
494
|
+
"3pGroupRegions": {
|
|
495
|
+
"message": "地區、語言",
|
|
496
|
+
"description": "Filter lists section name"
|
|
497
|
+
},
|
|
498
|
+
"3pGroupCustom": {
|
|
499
|
+
"message": "自訂",
|
|
500
|
+
"description": "Filter lists section name"
|
|
501
|
+
},
|
|
502
|
+
"3pImport": {
|
|
503
|
+
"message": "匯入…",
|
|
504
|
+
"description": "The label for the checkbox used to import external filter lists"
|
|
505
|
+
},
|
|
506
|
+
"3pExternalListsHint": {
|
|
507
|
+
"message": "每行一個網址。無效的網址將被忽略。",
|
|
508
|
+
"description": "Short information about how to use the textarea to import external filter lists by URL"
|
|
509
|
+
},
|
|
510
|
+
"3pExternalListObsolete": {
|
|
511
|
+
"message": "過久未更新。",
|
|
512
|
+
"description": "used as a tooltip for the out-of-date icon beside a list"
|
|
513
|
+
},
|
|
514
|
+
"3pViewContent": {
|
|
515
|
+
"message": "查看內容",
|
|
516
|
+
"description": "used as a tooltip for eye icon beside a list"
|
|
517
|
+
},
|
|
518
|
+
"3pLastUpdate": {
|
|
519
|
+
"message": "最後更新:{{ago}}。\n點擊此處以要求更新。",
|
|
520
|
+
"description": "used as a tooltip for the clock icon beside a list"
|
|
521
|
+
},
|
|
522
|
+
"3pUpdating": {
|
|
523
|
+
"message": "更新中…",
|
|
524
|
+
"description": "used as a tooltip for the spinner icon beside a list"
|
|
525
|
+
},
|
|
526
|
+
"3pNetworkError": {
|
|
527
|
+
"message": "因網路錯誤無法更新資源。",
|
|
528
|
+
"description": "used as a tooltip for error icon beside a list"
|
|
529
|
+
},
|
|
530
|
+
"1pFormatHint": {
|
|
531
|
+
"message": "每行一個過濾規則。規則可以單純是主機名稱,或是與 EasyList 相容的過濾規則。以 <code>!</code> 開頭的行將被忽略。",
|
|
532
|
+
"description": "Short information about how to create custom filters"
|
|
533
|
+
},
|
|
534
|
+
"1pTrustWarning": {
|
|
535
|
+
"message": "請勿添加未信任來源的過濾規則。",
|
|
536
|
+
"description": "Warning against copy-pasting filters from random sources"
|
|
537
|
+
},
|
|
538
|
+
"1pImport": {
|
|
539
|
+
"message": "匯入並加入…",
|
|
540
|
+
"description": "Button in the 'My filters' pane"
|
|
541
|
+
},
|
|
542
|
+
"1pExport": {
|
|
543
|
+
"message": "匯出…",
|
|
544
|
+
"description": "Button in the 'My filters' pane"
|
|
545
|
+
},
|
|
546
|
+
"1pExportFilename": {
|
|
547
|
+
"message": "my-ublock-static-filters_{{datetime}}.txt",
|
|
548
|
+
"description": "English: my-ublock-static-filters_{{datetime}}.txt"
|
|
549
|
+
},
|
|
550
|
+
"1pApplyChanges": {
|
|
551
|
+
"message": "套用變更",
|
|
552
|
+
"description": "English: Apply changes"
|
|
553
|
+
},
|
|
554
|
+
"rulesPermanentHeader": {
|
|
555
|
+
"message": "永久規則",
|
|
556
|
+
"description": "header"
|
|
557
|
+
},
|
|
558
|
+
"rulesTemporaryHeader": {
|
|
559
|
+
"message": "臨時規則",
|
|
560
|
+
"description": "header"
|
|
561
|
+
},
|
|
562
|
+
"rulesRevert": {
|
|
563
|
+
"message": "還原",
|
|
564
|
+
"description": "This will remove all temporary rules"
|
|
565
|
+
},
|
|
566
|
+
"rulesCommit": {
|
|
567
|
+
"message": "提交",
|
|
568
|
+
"description": "This will persist temporary rules"
|
|
569
|
+
},
|
|
570
|
+
"rulesEdit": {
|
|
571
|
+
"message": "編輯",
|
|
572
|
+
"description": "Will enable manual-edit mode (textarea)"
|
|
573
|
+
},
|
|
574
|
+
"rulesEditSave": {
|
|
575
|
+
"message": "儲存",
|
|
576
|
+
"description": "Will save manually-edited content and exit manual-edit mode"
|
|
577
|
+
},
|
|
578
|
+
"rulesEditDiscard": {
|
|
579
|
+
"message": "捨棄",
|
|
580
|
+
"description": "Will discard manually-edited content and exit manual-edit mode"
|
|
581
|
+
},
|
|
582
|
+
"rulesImport": {
|
|
583
|
+
"message": "從檔案匯入…",
|
|
584
|
+
"description": ""
|
|
585
|
+
},
|
|
586
|
+
"rulesExport": {
|
|
587
|
+
"message": "匯出至檔案…",
|
|
588
|
+
"description": "Button in the 'My rules' pane"
|
|
589
|
+
},
|
|
590
|
+
"rulesDefaultFileName": {
|
|
591
|
+
"message": "my-ublock-dynamic-rules_{{datetime}}.txt",
|
|
592
|
+
"description": "default file name to use"
|
|
593
|
+
},
|
|
594
|
+
"rulesHint": {
|
|
595
|
+
"message": "您的動態過濾規則清單。",
|
|
596
|
+
"description": "English: List of your dynamic filtering rules."
|
|
597
|
+
},
|
|
598
|
+
"rulesFormatHint": {
|
|
599
|
+
"message": "規則語法:<code>來源主機名稱 目標主機名稱 連線請求類型 操作</code>(<a href='https://github.com/gorhill/uBlock/wiki/Dynamic-filtering:-rule-syntax'>完整說明</a>)。",
|
|
600
|
+
"description": "English: dynamic rule syntax and full documentation."
|
|
601
|
+
},
|
|
602
|
+
"rulesSort": {
|
|
603
|
+
"message": "排序:",
|
|
604
|
+
"description": "English: label for sort option."
|
|
605
|
+
},
|
|
606
|
+
"rulesSortByType": {
|
|
607
|
+
"message": "規則類型",
|
|
608
|
+
"description": "English: a sort option for list of rules."
|
|
609
|
+
},
|
|
610
|
+
"rulesSortBySource": {
|
|
611
|
+
"message": "來源",
|
|
612
|
+
"description": "English: a sort option for list of rules."
|
|
613
|
+
},
|
|
614
|
+
"rulesSortByDestination": {
|
|
615
|
+
"message": "目標",
|
|
616
|
+
"description": "English: a sort option for list of rules."
|
|
617
|
+
},
|
|
618
|
+
"whitelistPrompt": {
|
|
619
|
+
"message": "信任名單中的規則適用的頁面不會被 uBlock Origin 過濾或阻擋。每行一個規則。",
|
|
620
|
+
"description": "A concise description of the 'Trusted sites' pane."
|
|
621
|
+
},
|
|
622
|
+
"whitelistImport": {
|
|
623
|
+
"message": "匯入並加入…",
|
|
624
|
+
"description": "Button in the 'Trusted sites' pane"
|
|
625
|
+
},
|
|
626
|
+
"whitelistExport": {
|
|
627
|
+
"message": "匯出…",
|
|
628
|
+
"description": "Button in the 'Trusted sites' pane"
|
|
629
|
+
},
|
|
630
|
+
"whitelistExportFilename": {
|
|
631
|
+
"message": "my-ublock-trusted-sites_{{datetime}}.txt",
|
|
632
|
+
"description": "The default filename to use for import/export purpose"
|
|
633
|
+
},
|
|
634
|
+
"whitelistApply": {
|
|
635
|
+
"message": "套用變更",
|
|
636
|
+
"description": "English: Apply changes"
|
|
637
|
+
},
|
|
638
|
+
"logRequestsHeaderType": {
|
|
639
|
+
"message": "類型",
|
|
640
|
+
"description": "English: Type"
|
|
641
|
+
},
|
|
642
|
+
"logRequestsHeaderDomain": {
|
|
643
|
+
"message": "網域",
|
|
644
|
+
"description": "English: Domain"
|
|
645
|
+
},
|
|
646
|
+
"logRequestsHeaderURL": {
|
|
647
|
+
"message": "網址",
|
|
648
|
+
"description": "English: URL"
|
|
649
|
+
},
|
|
650
|
+
"logRequestsHeaderFilter": {
|
|
651
|
+
"message": "過濾規則",
|
|
652
|
+
"description": "English: Filter"
|
|
653
|
+
},
|
|
654
|
+
"logAll": {
|
|
655
|
+
"message": "全部",
|
|
656
|
+
"description": "Appears in the logger's tab selector"
|
|
657
|
+
},
|
|
658
|
+
"logBehindTheScene": {
|
|
659
|
+
"message": "背景網路連線請求",
|
|
660
|
+
"description": "Pretty name for behind-the-scene network requests"
|
|
661
|
+
},
|
|
662
|
+
"loggerCurrentTab": {
|
|
663
|
+
"message": "目前分頁",
|
|
664
|
+
"description": "Appears in the logger's tab selector"
|
|
665
|
+
},
|
|
666
|
+
"loggerReloadTip": {
|
|
667
|
+
"message": "重新載入分頁內容",
|
|
668
|
+
"description": "Tooltip for the reload button in the logger page"
|
|
669
|
+
},
|
|
670
|
+
"loggerDomInspectorTip": {
|
|
671
|
+
"message": "切換是否啟用 DOM 檢視器",
|
|
672
|
+
"description": "Tooltip for the DOM inspector button in the logger page"
|
|
673
|
+
},
|
|
674
|
+
"loggerPopupPanelTip": {
|
|
675
|
+
"message": "切換是否啟用彈出式面板",
|
|
676
|
+
"description": "Tooltip for the popup panel button in the logger page"
|
|
677
|
+
},
|
|
678
|
+
"loggerInfoTip": {
|
|
679
|
+
"message": "uBlock Origin wiki:記錄器",
|
|
680
|
+
"description": "Tooltip for the top-right info label in the logger page"
|
|
681
|
+
},
|
|
682
|
+
"loggerClearTip": {
|
|
683
|
+
"message": "清除記錄",
|
|
684
|
+
"description": "Tooltip for the eraser in the logger page; used to blank the content of the logger"
|
|
685
|
+
},
|
|
686
|
+
"loggerPauseTip": {
|
|
687
|
+
"message": "暫停記錄(捨棄所有傳入資料)",
|
|
688
|
+
"description": "Tooltip for the pause button in the logger page"
|
|
689
|
+
},
|
|
690
|
+
"loggerUnpauseTip": {
|
|
691
|
+
"message": "取消暫停記錄",
|
|
692
|
+
"description": "Tooltip for the play button in the logger page"
|
|
693
|
+
},
|
|
694
|
+
"loggerRowFiltererButtonTip": {
|
|
695
|
+
"message": "切換是否啟用記錄篩選",
|
|
696
|
+
"description": "Tooltip for the row filterer button in the logger page"
|
|
697
|
+
},
|
|
698
|
+
"logFilterPrompt": {
|
|
699
|
+
"message": "篩選記錄條目",
|
|
700
|
+
"description": "Placeholder string for logger output filtering input field"
|
|
701
|
+
},
|
|
702
|
+
"loggerRowFiltererBuiltinTip": {
|
|
703
|
+
"message": "記錄器篩選設定",
|
|
704
|
+
"description": "Tooltip for the button to bring up logger output filtering options"
|
|
705
|
+
},
|
|
706
|
+
"loggerRowFiltererBuiltinNot": {
|
|
707
|
+
"message": "非",
|
|
708
|
+
"description": "A keyword in the built-in row filtering expression"
|
|
709
|
+
},
|
|
710
|
+
"loggerRowFiltererBuiltinEventful": {
|
|
711
|
+
"message": "已套用規則",
|
|
712
|
+
"description": "A keyword in the built-in row filtering expression: all items corresponding to uBO doing something (blocked, allowed, redirected, etc.)"
|
|
713
|
+
},
|
|
714
|
+
"loggerRowFiltererBuiltinBlocked": {
|
|
715
|
+
"message": "已封鎖",
|
|
716
|
+
"description": "A keyword in the built-in row filtering expression"
|
|
717
|
+
},
|
|
718
|
+
"loggerRowFiltererBuiltinAllowed": {
|
|
719
|
+
"message": "已允許",
|
|
720
|
+
"description": "A keyword in the built-in row filtering expression"
|
|
721
|
+
},
|
|
722
|
+
"loggerRowFiltererBuiltinModified": {
|
|
723
|
+
"message": "已修改",
|
|
724
|
+
"description": "A keyword in the built-in row filtering expression"
|
|
725
|
+
},
|
|
726
|
+
"loggerRowFiltererBuiltin1p": {
|
|
727
|
+
"message": "第一方",
|
|
728
|
+
"description": "A keyword in the built-in row filtering expression"
|
|
729
|
+
},
|
|
730
|
+
"loggerRowFiltererBuiltin3p": {
|
|
731
|
+
"message": "第三方",
|
|
732
|
+
"description": "A keyword in the built-in row filtering expression"
|
|
733
|
+
},
|
|
734
|
+
"loggerEntryDetailsHeader": {
|
|
735
|
+
"message": "詳細資料",
|
|
736
|
+
"description": "Small header to identify the 'Details' pane for a specific logger entry"
|
|
737
|
+
},
|
|
738
|
+
"loggerEntryDetailsFilter": {
|
|
739
|
+
"message": "過濾規則",
|
|
740
|
+
"description": "Label to identify a filter field"
|
|
741
|
+
},
|
|
742
|
+
"loggerEntryDetailsFilterList": {
|
|
743
|
+
"message": "過濾規則清單",
|
|
744
|
+
"description": "Label to identify a filter list field"
|
|
745
|
+
},
|
|
746
|
+
"loggerEntryDetailsRule": {
|
|
747
|
+
"message": "規則",
|
|
748
|
+
"description": "Label to identify a rule field"
|
|
749
|
+
},
|
|
750
|
+
"loggerEntryDetailsContext": {
|
|
751
|
+
"message": "上下文",
|
|
752
|
+
"description": "Label to identify a context field (typically a hostname)"
|
|
753
|
+
},
|
|
754
|
+
"loggerEntryDetailsRootContext": {
|
|
755
|
+
"message": "根上下文",
|
|
756
|
+
"description": "Label to identify a root context field (typically a hostname)"
|
|
757
|
+
},
|
|
758
|
+
"loggerEntryDetailsPartyness": {
|
|
759
|
+
"message": "所屬方",
|
|
760
|
+
"description": "Label to identify a field providing partyness information"
|
|
761
|
+
},
|
|
762
|
+
"loggerEntryDetailsType": {
|
|
763
|
+
"message": "類型",
|
|
764
|
+
"description": "Label to identify the type of an entry"
|
|
765
|
+
},
|
|
766
|
+
"loggerEntryDetailsURL": {
|
|
767
|
+
"message": "網址",
|
|
768
|
+
"description": "Label to identify the URL of an entry"
|
|
769
|
+
},
|
|
770
|
+
"loggerURLFilteringHeader": {
|
|
771
|
+
"message": "網址規則",
|
|
772
|
+
"description": "Small header to identify the dynamic URL filtering section"
|
|
773
|
+
},
|
|
774
|
+
"loggerURLFilteringContextLabel": {
|
|
775
|
+
"message": "上下文:",
|
|
776
|
+
"description": "Label for the context selector"
|
|
777
|
+
},
|
|
778
|
+
"loggerURLFilteringTypeLabel": {
|
|
779
|
+
"message": "類型:",
|
|
780
|
+
"description": "Label for the type selector"
|
|
781
|
+
},
|
|
782
|
+
"loggerStaticFilteringHeader": {
|
|
783
|
+
"message": "靜態過濾",
|
|
784
|
+
"description": "Small header to identify the static filtering section"
|
|
785
|
+
},
|
|
786
|
+
"loggerStaticFilteringSentence": {
|
|
787
|
+
"message": "當網址符合 {{url}},{{br}}並且來自 {{origin}} 時,{{br}}{{action}} {{type}} 的網路請求,{{br}}{{importance}} 已有符合的過濾例外規則。",
|
|
788
|
+
"description": "Used in the static filtering wizard"
|
|
789
|
+
},
|
|
790
|
+
"loggerStaticFilteringSentencePartBlock": {
|
|
791
|
+
"message": "封鎖",
|
|
792
|
+
"description": "Used in the static filtering wizard"
|
|
793
|
+
},
|
|
794
|
+
"loggerStaticFilteringSentencePartAllow": {
|
|
795
|
+
"message": "允許",
|
|
796
|
+
"description": "Used in the static filtering wizard"
|
|
797
|
+
},
|
|
798
|
+
"loggerStaticFilteringSentencePartType": {
|
|
799
|
+
"message": "{{type}} 類型",
|
|
800
|
+
"description": "Used in the static filtering wizard"
|
|
801
|
+
},
|
|
802
|
+
"loggerStaticFilteringSentencePartAnyType": {
|
|
803
|
+
"message": "任何類型",
|
|
804
|
+
"description": "Used in the static filtering wizard"
|
|
805
|
+
},
|
|
806
|
+
"loggerStaticFilteringSentencePartOrigin": {
|
|
807
|
+
"message": "來自「{{origin}}」",
|
|
808
|
+
"description": "Used in the static filtering wizard"
|
|
809
|
+
},
|
|
810
|
+
"loggerStaticFilteringSentencePartAnyOrigin": {
|
|
811
|
+
"message": "來自任何地方",
|
|
812
|
+
"description": "Used in the static filtering wizard"
|
|
813
|
+
},
|
|
814
|
+
"loggerStaticFilteringSentencePartNotImportant": {
|
|
815
|
+
"message": "除非",
|
|
816
|
+
"description": "Used in the static filtering wizard"
|
|
817
|
+
},
|
|
818
|
+
"loggerStaticFilteringSentencePartImportant": {
|
|
819
|
+
"message": "就算",
|
|
820
|
+
"description": "Used in the static filtering wizard"
|
|
821
|
+
},
|
|
822
|
+
"loggerStaticFilteringFinderSentence1": {
|
|
823
|
+
"message": "在下列清單中找到靜態過濾規則 <code>{{filter}}</code>:",
|
|
824
|
+
"description": "Below this sentence, the filter list(s) in which the filter was found"
|
|
825
|
+
},
|
|
826
|
+
"loggerStaticFilteringFinderSentence2": {
|
|
827
|
+
"message": "無法在任何目前已啟用的過濾規則清單中找到靜態過濾規則",
|
|
828
|
+
"description": "Message to show when a filter cannot be found in any filter lists"
|
|
829
|
+
},
|
|
830
|
+
"loggerSettingDiscardPrompt": {
|
|
831
|
+
"message": "未符合以下所有條件的記錄將會被自動捨棄:",
|
|
832
|
+
"description": "Logger setting: A sentence to describe the purpose of the settings below"
|
|
833
|
+
},
|
|
834
|
+
"loggerSettingPerEntryMaxAge": {
|
|
835
|
+
"message": "最多保留 {{input}} 分鐘以內的記錄",
|
|
836
|
+
"description": "A logger setting"
|
|
837
|
+
},
|
|
838
|
+
"loggerSettingPerTabMaxLoads": {
|
|
839
|
+
"message": "每個分頁最多保留 {{input}} 次重新載入該頁所產生的記錄",
|
|
840
|
+
"description": "A logger setting"
|
|
841
|
+
},
|
|
842
|
+
"loggerSettingPerTabMaxEntries": {
|
|
843
|
+
"message": "每個分頁最多保留 {{input}} 條記錄",
|
|
844
|
+
"description": "A logger setting"
|
|
845
|
+
},
|
|
846
|
+
"loggerSettingPerEntryLineCount": {
|
|
847
|
+
"message": "在垂直延展模式中每條記錄顯示 {{input}} 行",
|
|
848
|
+
"description": "A logger setting"
|
|
849
|
+
},
|
|
850
|
+
"loggerSettingHideColumnsPrompt": {
|
|
851
|
+
"message": "隱藏欄位:",
|
|
852
|
+
"description": "Logger settings: a sentence to describe the purpose of the checkboxes below"
|
|
853
|
+
},
|
|
854
|
+
"loggerSettingHideColumnTime": {
|
|
855
|
+
"message": "{{input}} 時間",
|
|
856
|
+
"description": "A label for the time column"
|
|
857
|
+
},
|
|
858
|
+
"loggerSettingHideColumnFilter": {
|
|
859
|
+
"message": "{{input}} 過濾規則",
|
|
860
|
+
"description": "A label for the filter or rule column"
|
|
861
|
+
},
|
|
862
|
+
"loggerSettingHideColumnContext": {
|
|
863
|
+
"message": "{{input}} 上下文",
|
|
864
|
+
"description": "A label for the context column"
|
|
865
|
+
},
|
|
866
|
+
"loggerSettingHideColumnPartyness": {
|
|
867
|
+
"message": "{{input}} 所屬方",
|
|
868
|
+
"description": "A label for the partyness column"
|
|
869
|
+
},
|
|
870
|
+
"loggerExportFormatList": {
|
|
871
|
+
"message": "清單",
|
|
872
|
+
"description": "Label for radio-button to pick export format"
|
|
873
|
+
},
|
|
874
|
+
"loggerExportFormatTable": {
|
|
875
|
+
"message": "表格",
|
|
876
|
+
"description": "Label for radio-button to pick export format"
|
|
877
|
+
},
|
|
878
|
+
"loggerExportEncodePlain": {
|
|
879
|
+
"message": "純文字",
|
|
880
|
+
"description": "Label for radio-button to pick export text format"
|
|
881
|
+
},
|
|
882
|
+
"loggerExportEncodeMarkdown": {
|
|
883
|
+
"message": "Markdown",
|
|
884
|
+
"description": "Label for radio-button to pick export text format"
|
|
885
|
+
},
|
|
886
|
+
"supportOpenButton": {
|
|
887
|
+
"message": "開啟",
|
|
888
|
+
"description": "Text for button which open an external webpage in Support pane"
|
|
889
|
+
},
|
|
890
|
+
"supportReportSpecificButton": {
|
|
891
|
+
"message": "發出新報告",
|
|
892
|
+
"description": "Text for button which open an external webpage in Support pane"
|
|
893
|
+
},
|
|
894
|
+
"supportFindSpecificButton": {
|
|
895
|
+
"message": "尋找類似的報告",
|
|
896
|
+
"description": "A clickable link in the filter issue reporter section"
|
|
897
|
+
},
|
|
898
|
+
"supportS1H": {
|
|
899
|
+
"message": "文件",
|
|
900
|
+
"description": "Header of 'Documentation' section in Support pane"
|
|
901
|
+
},
|
|
902
|
+
"supportS1P1": {
|
|
903
|
+
"message": "欲了解 uBlock Origin 所有的功能,請閱讀 <code>uBlock/wiki</code> 中的文件。",
|
|
904
|
+
"description": "First paragraph of 'Documentation' section in Support pane"
|
|
905
|
+
},
|
|
906
|
+
"supportS2H": {
|
|
907
|
+
"message": "問題與支援",
|
|
908
|
+
"description": "Header of 'Questions and support' section in Support pane"
|
|
909
|
+
},
|
|
910
|
+
"supportS2P1": {
|
|
911
|
+
"message": "問題及其他類型的求助,可以在 <code>/r/uBlockOrigin</code> subreddit 獲得協助與解答。",
|
|
912
|
+
"description": "First paragraph of 'Questions and support' section in Support pane"
|
|
913
|
+
},
|
|
914
|
+
"supportS3H": {
|
|
915
|
+
"message": "過濾器問題 / 網站被搞壞",
|
|
916
|
+
"description": "Header of 'Filter issues' section in Support pane"
|
|
917
|
+
},
|
|
918
|
+
"supportS3P1": {
|
|
919
|
+
"message": "請到 <span data-url=\"https://github.com/uBlockOrigin/uAssets/issues?q=is%3Aissue\"><code>uBlockOrigin/uAssets</code> 議題追蹤系統</span>回報特定網站的過濾器問題。需要 GitHub 帳號。",
|
|
920
|
+
"description": "First paragraph of 'Filter issues' section in Support pane"
|
|
921
|
+
},
|
|
922
|
+
"supportS3P2": {
|
|
923
|
+
"message": "<b>特別注意:</b>不要把其他同性質的阻擋工具跟 uBlock Origin 混用,否則可能會造成特定網站的過濾器問題。",
|
|
924
|
+
"description": "Second paragraph of 'Filter issues' section in Support pane"
|
|
925
|
+
},
|
|
926
|
+
"supportS3P3": {
|
|
927
|
+
"message": "<b>小提示:</b>請確定您的過濾器清單已經更新至最新版本。我們主要用<span data-url=\"logger-ui.html#_\">記錄器</span>來分析過濾器相關問題。",
|
|
928
|
+
"description": "Third paragraph of 'Filter issues' section in Support pane"
|
|
929
|
+
},
|
|
930
|
+
"supportS4H": {
|
|
931
|
+
"message": "錯誤報告",
|
|
932
|
+
"description": "Header of 'Bug report' section in Support pane"
|
|
933
|
+
},
|
|
934
|
+
"supportS4P1": {
|
|
935
|
+
"message": "請到 <span data-url=\"https://github.com/uBlockOrigin/uBlock-issues/issues?q=is%3Aissue\"><code>uBlockOrigin/uBlock-issue</code> 議題追蹤系統</span>回報 uBlock Origin 本身的問題。需要 GitHub 帳號。",
|
|
936
|
+
"description": "First paragraph of 'Bug report' section in Support pane"
|
|
937
|
+
},
|
|
938
|
+
"supportS5H": {
|
|
939
|
+
"message": "疑難排解資訊",
|
|
940
|
+
"description": "Header of 'Troubleshooting Information' section in Support pane"
|
|
941
|
+
},
|
|
942
|
+
"supportS5P1": {
|
|
943
|
+
"message": "以下是志願者嘗試幫您解決問題時,可能會用到的技術資訊:",
|
|
944
|
+
"description": "First paragraph of 'Troubleshooting Information' section in Support pane"
|
|
945
|
+
},
|
|
946
|
+
"supportS5P2": {
|
|
947
|
+
"message": "<b>特別注意:</b>預設情況下,潛在隱私或敏感資料會被替換掉。替換過的資訊可能會加大問題解決的難度。",
|
|
948
|
+
"description": "Second paragraph of 'Troubleshooting Information' section in Support pane"
|
|
949
|
+
},
|
|
950
|
+
"supportS6H": {
|
|
951
|
+
"message": "回報過濾規則的問題",
|
|
952
|
+
"description": "Header of 'Report a filter issue' section in Support pane"
|
|
953
|
+
},
|
|
954
|
+
"supportS6P1S1": {
|
|
955
|
+
"message": "為了避免太多人發出重複的報告拖垮志工,請先確認是否已經有人回報過您打算報告的問題。",
|
|
956
|
+
"description": "A paragraph in the filter issue reporter section"
|
|
957
|
+
},
|
|
958
|
+
"supportS6P2S1": {
|
|
959
|
+
"message": "過濾器清單每天更新。請確認您的問題無法用最新的過濾器清單解決。",
|
|
960
|
+
"description": "A paragraph in the filter issue reporter section"
|
|
961
|
+
},
|
|
962
|
+
"supportS6P2S2": {
|
|
963
|
+
"message": "重新載入有問題的網頁後,驗證問題是否仍然存在。",
|
|
964
|
+
"description": "A paragraph in the filter issue reporter section"
|
|
965
|
+
},
|
|
966
|
+
"supportS6URL": {
|
|
967
|
+
"message": "網址:",
|
|
968
|
+
"description": "Label for the URL of the page"
|
|
969
|
+
},
|
|
970
|
+
"supportS6Select1": {
|
|
971
|
+
"message": "這張網頁…",
|
|
972
|
+
"description": "Label for widget to select type of issue"
|
|
973
|
+
},
|
|
974
|
+
"supportS6Select1Option0": {
|
|
975
|
+
"message": "-- 挑選一種情況 --",
|
|
976
|
+
"description": "An entry in the widget used to select the type of issue"
|
|
977
|
+
},
|
|
978
|
+
"supportS6Select1Option1": {
|
|
979
|
+
"message": "顯示廣告或廣告移除後留下的天窗",
|
|
980
|
+
"description": "An entry in the widget used to select the type of issue"
|
|
981
|
+
},
|
|
982
|
+
"supportS6Select1Option2": {
|
|
983
|
+
"message": "會覆蓋內容或有其他煩人的內容",
|
|
984
|
+
"description": "An entry in the widget used to select the type of issue"
|
|
985
|
+
},
|
|
986
|
+
"supportS6Select1Option3": {
|
|
987
|
+
"message": "偵測到 uBlock Origin",
|
|
988
|
+
"description": "An entry in the widget used to select the type of issue"
|
|
989
|
+
},
|
|
990
|
+
"supportS6Select1Option4": {
|
|
991
|
+
"message": "有隱私權相關問題",
|
|
992
|
+
"description": "An entry in the widget used to select the type of issue"
|
|
993
|
+
},
|
|
994
|
+
"supportS6Select1Option5": {
|
|
995
|
+
"message": "開啟 uBlock Origin 的時候網頁運作不正常",
|
|
996
|
+
"description": "An entry in the widget used to select the type of issue"
|
|
997
|
+
},
|
|
998
|
+
"supportS6Select1Option6": {
|
|
999
|
+
"message": "開啟不想出現的分頁或視窗",
|
|
1000
|
+
"description": "An entry in the widget used to select the type of issue"
|
|
1001
|
+
},
|
|
1002
|
+
"supportS6Checkbox1": {
|
|
1003
|
+
"message": "將網頁標記為「NSFW」(<a href=\"https://zh.wikipedia.org/wiki/NSFW\">工作場所不宜</a>)",
|
|
1004
|
+
"description": "A checkbox to use for NSFW sites"
|
|
1005
|
+
},
|
|
1006
|
+
"supportRedact": {
|
|
1007
|
+
"message": "替換",
|
|
1008
|
+
"description": "Text for 'Redact' button"
|
|
1009
|
+
},
|
|
1010
|
+
"supportUnredact": {
|
|
1011
|
+
"message": "不要替換",
|
|
1012
|
+
"description": "Text for 'Unredact' button"
|
|
1013
|
+
},
|
|
1014
|
+
"aboutPrivacyPolicy": {
|
|
1015
|
+
"message": "隱私權條款",
|
|
1016
|
+
"description": "Link to privacy policy on GitHub (English)"
|
|
1017
|
+
},
|
|
1018
|
+
"aboutChangelog": {
|
|
1019
|
+
"message": "更新日誌",
|
|
1020
|
+
"description": ""
|
|
1021
|
+
},
|
|
1022
|
+
"aboutCode": {
|
|
1023
|
+
"message": "程式原始碼(GPLv3)",
|
|
1024
|
+
"description": "English: Source code (GPLv3)"
|
|
1025
|
+
},
|
|
1026
|
+
"aboutContributors": {
|
|
1027
|
+
"message": "貢獻者",
|
|
1028
|
+
"description": "English: Contributors"
|
|
1029
|
+
},
|
|
1030
|
+
"aboutSourceCode": {
|
|
1031
|
+
"message": "原始碼",
|
|
1032
|
+
"description": "Link text to source code repo"
|
|
1033
|
+
},
|
|
1034
|
+
"aboutTranslations": {
|
|
1035
|
+
"message": "翻譯",
|
|
1036
|
+
"description": "Link text to translations repo"
|
|
1037
|
+
},
|
|
1038
|
+
"aboutFilterLists": {
|
|
1039
|
+
"message": "過濾規則清單",
|
|
1040
|
+
"description": "Link text to uBO's own filter lists repo"
|
|
1041
|
+
},
|
|
1042
|
+
"aboutDependencies": {
|
|
1043
|
+
"message": "外部相依套件(與 GPLv3 相容):",
|
|
1044
|
+
"description": "Shown in the About pane"
|
|
1045
|
+
},
|
|
1046
|
+
"aboutCDNs": {
|
|
1047
|
+
"message": "uBO 自家的過濾規則清單由下列 <a href=\"https://wikipedia.org/wiki/Content_delivery_network\">CDN</a> 免費代管:",
|
|
1048
|
+
"description": "Shown in the About pane"
|
|
1049
|
+
},
|
|
1050
|
+
"aboutCDNsInfo": {
|
|
1051
|
+
"message": "當過濾清單需要更新時,將隨機選擇一組 CDN 連線下載",
|
|
1052
|
+
"description": "Shown in the About pane"
|
|
1053
|
+
},
|
|
1054
|
+
"aboutBackupDataButton": {
|
|
1055
|
+
"message": "備份至檔案…",
|
|
1056
|
+
"description": "Text for button to create a backup of all settings"
|
|
1057
|
+
},
|
|
1058
|
+
"aboutBackupFilename": {
|
|
1059
|
+
"message": "my-ublock-backup_{{datetime}}.txt",
|
|
1060
|
+
"description": "English: my-ublock-backup_{{datetime}}.txt"
|
|
1061
|
+
},
|
|
1062
|
+
"aboutRestoreDataButton": {
|
|
1063
|
+
"message": "從檔案還原…",
|
|
1064
|
+
"description": "English: Restore from file..."
|
|
1065
|
+
},
|
|
1066
|
+
"aboutResetDataButton": {
|
|
1067
|
+
"message": "重設為預設設定…",
|
|
1068
|
+
"description": "English: Reset to default settings..."
|
|
1069
|
+
},
|
|
1070
|
+
"aboutRestoreDataConfirm": {
|
|
1071
|
+
"message": "您所有的設定將會被 {{time}} 的備份資料覆蓋,並將重新啟動 uBlock₀。\n\n您確定要用備份資料蓋過目前的所有設定嗎?",
|
|
1072
|
+
"description": "Message asking user to confirm restore"
|
|
1073
|
+
},
|
|
1074
|
+
"aboutRestoreDataError": {
|
|
1075
|
+
"message": "無法讀取資料,或資料無效",
|
|
1076
|
+
"description": "Message to display when an error occurred during restore"
|
|
1077
|
+
},
|
|
1078
|
+
"aboutResetDataConfirm": {
|
|
1079
|
+
"message": "您所有的設定都將被移除,並將重新啟動 uBlock₀。\n\n您確定要將 uBlock₀ 回復為原廠設定?",
|
|
1080
|
+
"description": "Message asking user to confirm reset"
|
|
1081
|
+
},
|
|
1082
|
+
"errorCantConnectTo": {
|
|
1083
|
+
"message": "網路錯誤:{{msg}}",
|
|
1084
|
+
"description": "English: Network error: {{msg}}"
|
|
1085
|
+
},
|
|
1086
|
+
"subscriberConfirm": {
|
|
1087
|
+
"message": "確定要新增下列網址至自訂過濾規則清單?\n\n標題:「{{title}}」\n網址:{{url}}",
|
|
1088
|
+
"description": "No longer used"
|
|
1089
|
+
},
|
|
1090
|
+
"subscribeButton": {
|
|
1091
|
+
"message": "訂閱",
|
|
1092
|
+
"description": "For the button used to subscribe to a filter list"
|
|
1093
|
+
},
|
|
1094
|
+
"elapsedOneMinuteAgo": {
|
|
1095
|
+
"message": "1 分鐘前",
|
|
1096
|
+
"description": "English: a minute ago"
|
|
1097
|
+
},
|
|
1098
|
+
"elapsedManyMinutesAgo": {
|
|
1099
|
+
"message": "{{value}} 分鐘前",
|
|
1100
|
+
"description": "English: {{value}} minutes ago"
|
|
1101
|
+
},
|
|
1102
|
+
"elapsedOneHourAgo": {
|
|
1103
|
+
"message": "1 小時前",
|
|
1104
|
+
"description": "English: an hour ago"
|
|
1105
|
+
},
|
|
1106
|
+
"elapsedManyHoursAgo": {
|
|
1107
|
+
"message": "{{value}} 小時前",
|
|
1108
|
+
"description": "English: {{value}} hours ago"
|
|
1109
|
+
},
|
|
1110
|
+
"elapsedOneDayAgo": {
|
|
1111
|
+
"message": "1 天前",
|
|
1112
|
+
"description": "English: a day ago"
|
|
1113
|
+
},
|
|
1114
|
+
"elapsedManyDaysAgo": {
|
|
1115
|
+
"message": "{{value}} 天前",
|
|
1116
|
+
"description": "English: {{value}} days ago"
|
|
1117
|
+
},
|
|
1118
|
+
"showDashboardButton": {
|
|
1119
|
+
"message": "顯示控制台",
|
|
1120
|
+
"description": "Firefox/Fennec-specific: Show Dashboard"
|
|
1121
|
+
},
|
|
1122
|
+
"showNetworkLogButton": {
|
|
1123
|
+
"message": "顯示記錄器",
|
|
1124
|
+
"description": "Firefox/Fennec-specific: Show Logger"
|
|
1125
|
+
},
|
|
1126
|
+
"fennecMenuItemBlockingOff": {
|
|
1127
|
+
"message": "關閉",
|
|
1128
|
+
"description": "Firefox-specific: appears as 'uBlock₀ (off)'"
|
|
1129
|
+
},
|
|
1130
|
+
"docblockedTitle": {
|
|
1131
|
+
"message": "頁面已阻擋",
|
|
1132
|
+
"description": "Used as a title for the document-blocked page"
|
|
1133
|
+
},
|
|
1134
|
+
"docblockedPrompt1": {
|
|
1135
|
+
"message": "uBlock Origin 已防止下列頁面載入:",
|
|
1136
|
+
"description": "Used in the strict-blocking page"
|
|
1137
|
+
},
|
|
1138
|
+
"docblockedPrompt2": {
|
|
1139
|
+
"message": "因為下列過濾規則:",
|
|
1140
|
+
"description": "Used in the strict-blocking page"
|
|
1141
|
+
},
|
|
1142
|
+
"docblockedNoParamsPrompt": {
|
|
1143
|
+
"message": "不帶參數",
|
|
1144
|
+
"description": "label to be used for the parameter-less URL: https://cloud.githubusercontent.com/assets/585534/9832014/bfb1b8f0-593b-11e5-8a27-fba472a5529a.png"
|
|
1145
|
+
},
|
|
1146
|
+
"docblockedFoundIn": {
|
|
1147
|
+
"message": "在下列清單找到:",
|
|
1148
|
+
"description": "English: List of filter list names follows"
|
|
1149
|
+
},
|
|
1150
|
+
"docblockedBack": {
|
|
1151
|
+
"message": "返回",
|
|
1152
|
+
"description": "English: Go back"
|
|
1153
|
+
},
|
|
1154
|
+
"docblockedClose": {
|
|
1155
|
+
"message": "關閉此視窗",
|
|
1156
|
+
"description": "English: Close this window"
|
|
1157
|
+
},
|
|
1158
|
+
"docblockedDontWarn": {
|
|
1159
|
+
"message": "不再針對此網站作出警告",
|
|
1160
|
+
"description": "Label for checkbox in document-blocked page"
|
|
1161
|
+
},
|
|
1162
|
+
"docblockedProceed": {
|
|
1163
|
+
"message": "停止針對 {{hostname}} 的嚴格封鎖",
|
|
1164
|
+
"description": "English: Disable strict blocking for {{hostname}} ..."
|
|
1165
|
+
},
|
|
1166
|
+
"docblockedDisableTemporary": {
|
|
1167
|
+
"message": "暫時",
|
|
1168
|
+
"description": "English: Temporarily"
|
|
1169
|
+
},
|
|
1170
|
+
"docblockedDisablePermanent": {
|
|
1171
|
+
"message": "永久",
|
|
1172
|
+
"description": "English: Permanently"
|
|
1173
|
+
},
|
|
1174
|
+
"docblockedDisable": {
|
|
1175
|
+
"message": "繼續載入",
|
|
1176
|
+
"description": "Button text to navigate to the blocked page"
|
|
1177
|
+
},
|
|
1178
|
+
"cloudPush": {
|
|
1179
|
+
"message": "匯出至雲端儲存空間",
|
|
1180
|
+
"description": "tooltip"
|
|
1181
|
+
},
|
|
1182
|
+
"cloudPull": {
|
|
1183
|
+
"message": "從雲端儲存空間匯入",
|
|
1184
|
+
"description": "tooltip"
|
|
1185
|
+
},
|
|
1186
|
+
"cloudPullAndMerge": {
|
|
1187
|
+
"message": "自雲端匯入,並與目前設定合併",
|
|
1188
|
+
"description": "tooltip"
|
|
1189
|
+
},
|
|
1190
|
+
"cloudNoData": {
|
|
1191
|
+
"message": "…\n…",
|
|
1192
|
+
"description": ""
|
|
1193
|
+
},
|
|
1194
|
+
"cloudDeviceNamePrompt": {
|
|
1195
|
+
"message": "此裝置的名稱:",
|
|
1196
|
+
"description": "used as a prompt for the user to provide a custom device name"
|
|
1197
|
+
},
|
|
1198
|
+
"advancedSettingsWarning": {
|
|
1199
|
+
"message": "警告!修改進階設定時請自負風險。",
|
|
1200
|
+
"description": "A warning to users at the top of 'Advanced settings' page"
|
|
1201
|
+
},
|
|
1202
|
+
"genericSubmit": {
|
|
1203
|
+
"message": "送出",
|
|
1204
|
+
"description": "for generic 'Submit' buttons"
|
|
1205
|
+
},
|
|
1206
|
+
"genericApplyChanges": {
|
|
1207
|
+
"message": "套用變更",
|
|
1208
|
+
"description": "for generic 'Apply changes' buttons"
|
|
1209
|
+
},
|
|
1210
|
+
"genericRevert": {
|
|
1211
|
+
"message": "還原",
|
|
1212
|
+
"description": "for generic 'Revert' buttons"
|
|
1213
|
+
},
|
|
1214
|
+
"genericBytes": {
|
|
1215
|
+
"message": "位元組",
|
|
1216
|
+
"description": ""
|
|
1217
|
+
},
|
|
1218
|
+
"contextMenuBlockElementInFrame": {
|
|
1219
|
+
"message": "阻擋框架中的內容…",
|
|
1220
|
+
"description": "An entry in the browser's contextual menu"
|
|
1221
|
+
},
|
|
1222
|
+
"contextMenuSubscribeToList": {
|
|
1223
|
+
"message": "訂閱過濾規則清單…",
|
|
1224
|
+
"description": "An entry in the browser's contextual menu"
|
|
1225
|
+
},
|
|
1226
|
+
"contextMenuTemporarilyAllowLargeMediaElements": {
|
|
1227
|
+
"message": "暫時允許大型媒體元素",
|
|
1228
|
+
"description": "A context menu entry, present when large media elements have been blocked on the current site"
|
|
1229
|
+
},
|
|
1230
|
+
"contextMenuViewSource": {
|
|
1231
|
+
"message": "檢視原始碼…",
|
|
1232
|
+
"description": "A context menu entry, to view the source code of the target resource"
|
|
1233
|
+
},
|
|
1234
|
+
"shortcutCapturePlaceholder": {
|
|
1235
|
+
"message": "輸入快捷鍵",
|
|
1236
|
+
"description": "Placeholder string for input field used to capture a keyboard shortcut"
|
|
1237
|
+
},
|
|
1238
|
+
"genericMergeViewScrollLock": {
|
|
1239
|
+
"message": "切換是否啟用同步捲動",
|
|
1240
|
+
"description": "Tooltip for the button used to lock scrolling between the views in the 'My rules' pane"
|
|
1241
|
+
},
|
|
1242
|
+
"genericCopyToClipboard": {
|
|
1243
|
+
"message": "複製到剪貼簿",
|
|
1244
|
+
"description": "Label for buttons used to copy something to the clipboard"
|
|
1245
|
+
},
|
|
1246
|
+
"genericSelectAll": {
|
|
1247
|
+
"message": "全選",
|
|
1248
|
+
"description": "Label for buttons used to select all text in editor"
|
|
1249
|
+
},
|
|
1250
|
+
"toggleCosmeticFiltering": {
|
|
1251
|
+
"message": "切換是否啟用元素隱藏過濾規則",
|
|
1252
|
+
"description": "Label for keyboard shortcut used to toggle cosmetic filtering"
|
|
1253
|
+
},
|
|
1254
|
+
"relaxBlockingMode": {
|
|
1255
|
+
"message": "放寬封鎖量模式",
|
|
1256
|
+
"description": "Label for keyboard shortcut used to relax blocking mode"
|
|
1257
|
+
},
|
|
1258
|
+
"storageUsed": {
|
|
1259
|
+
"message": "儲存空間用量:{{value}} {{unit}}",
|
|
1260
|
+
"description": " In Setting pane, renders as (example): Storage used: 13.2 MB"
|
|
1261
|
+
},
|
|
1262
|
+
"KB": {
|
|
1263
|
+
"message": "KB",
|
|
1264
|
+
"description": "short for 'kilobytes'"
|
|
1265
|
+
},
|
|
1266
|
+
"MB": {
|
|
1267
|
+
"message": "MB",
|
|
1268
|
+
"description": "short for 'megabytes'"
|
|
1269
|
+
},
|
|
1270
|
+
"GB": {
|
|
1271
|
+
"message": "GB",
|
|
1272
|
+
"description": "short for 'gigabytes'"
|
|
1273
|
+
},
|
|
1274
|
+
"clickToLoad": {
|
|
1275
|
+
"message": "點擊以載入",
|
|
1276
|
+
"description": "Message used in frame placeholders"
|
|
1277
|
+
},
|
|
1278
|
+
"linterMainReport": {
|
|
1279
|
+
"message": "錯誤:{{count}}",
|
|
1280
|
+
"description": "Summary of number of errors as reported by the linter "
|
|
1281
|
+
},
|
|
1282
|
+
"unprocessedRequestTooltip": {
|
|
1283
|
+
"message": "無法在瀏覽器啟動的時候正確過濾。請重新載入頁面來確保過濾正確。",
|
|
1284
|
+
"description": "A warning which will appear in the popup panel if needed"
|
|
1285
|
+
},
|
|
1286
|
+
"dummy": {
|
|
1287
|
+
"message": "此條目須為最後一個",
|
|
1288
|
+
"description": "so we dont need to deal with comma for last entry"
|
|
1289
|
+
}
|
|
1290
|
+
}
|