@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": "بالاخره، یک بلاکر کارآمد. کم حجم بر روی پردازنده و حافظه.",
|
|
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\nکنترل+کلیک: غیر فعال کردن 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\nهمزمان کلیدکنترل را نگهدارید و کلیک کنید تا 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": "کلیک کنید تا جاوا اسکریپت در این سایت غیرفعال شود",
|
|
184
|
+
"description": "Tooltip for the no-scripting per-site switch"
|
|
185
|
+
},
|
|
186
|
+
"popupTipNoScripting2": {
|
|
187
|
+
"message": "کلیک کنید تا جاوا اسکریپت دیگر در این سایت غیرفعال نشود",
|
|
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": "جاوااسکریپت",
|
|
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": "3rd-party",
|
|
244
|
+
"description": ""
|
|
245
|
+
},
|
|
246
|
+
"popup3pPassiveRulePrompt": {
|
|
247
|
+
"message": "تصاویر/css سایت های ثالث",
|
|
248
|
+
"description": ""
|
|
249
|
+
},
|
|
250
|
+
"popupInlineScriptRulePrompt": {
|
|
251
|
+
"message": "اسکریپت های درون خطی",
|
|
252
|
+
"description": ""
|
|
253
|
+
},
|
|
254
|
+
"popup1pScriptRulePrompt": {
|
|
255
|
+
"message": "اسکریپت های 1st-party",
|
|
256
|
+
"description": ""
|
|
257
|
+
},
|
|
258
|
+
"popup3pScriptRulePrompt": {
|
|
259
|
+
"message": "اسکریپت های 3rd-party",
|
|
260
|
+
"description": ""
|
|
261
|
+
},
|
|
262
|
+
"popup3pFrameRulePrompt": {
|
|
263
|
+
"message": "فریم های 3rd-party",
|
|
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": "frame",
|
|
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": "کلیک، کنترل-کلیک",
|
|
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": "استفاده از منوی متنی در زمانهای لازم",
|
|
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": "من کاربر حرفه ای هستم (<a href='https://github.com/gorhill/uBlock/wiki/Advanced-user-features'>لازم است بخوانید</a>)",
|
|
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:number}} کیلوبایت",
|
|
384
|
+
"description": ""
|
|
385
|
+
},
|
|
386
|
+
"settingsNoRemoteFontsPrompt": {
|
|
387
|
+
"message": "انسداد فونت های راه دور",
|
|
388
|
+
"description": ""
|
|
389
|
+
},
|
|
390
|
+
"settingsNoScriptingPrompt": {
|
|
391
|
+
"message": "غیرفعال کردن جاوا اسکریپت",
|
|
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": "<p>این گزینه <a href=\"https://adblockplus.org/en/faq_internal#elemhide\">فیلترهای “مخفیکردن اشیا” سازگار با ادبلاک پلاس</a> را تجزیه و اجرا میکند. این فیلتر ها اساساً فنی هستند، آنها اشیاء موجود در صفحه وب را که مزاحم تلقی میشوند و با موتور فیلترینگ شبکه قابل بلاک کردن نیستند را حذف میکنند.</p><p>فعال کردن این قابلیت مصرف حافظه ی uBlock را افزایش میدهد.</p>",
|
|
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": "<p>فیلترهای زیبا سازی عمومی، آن دسته از فیلترهای زیبا سازی هستند که در همه وب سایت ها کاربرد دارند.\n<p>اگر چه بصورت موثر توسط uBlock₀ انجام شده، ولی فیلترهای عمومی زیبا سازی هنوز هم ممکن است سربار حافظه قابل اندازه گیری و سربار پردازنده در برخی از صفحات وب به جای بگذارد، به ویژه برای صفحات وب بزرگ و طولانی مدت.<p>فعال کردن این گزینه سربارهای حافظه و پردازنده را که به صفحات اضافه شده به عنوان نتیجۀ اجرای فیلترهای عمومی زیبا سازی برطرف میکند، و همچنین ردپای حافظۀ خود uBlock₀ را کمتر میکند<p>توصیه می شود این گزینه را در دستگاه های با قدرت کمتر فعال کنید.",
|
|
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": "یک فیلتر در هر خط. یک فیلتر می تواند آدرس هاست ساده یا فیلتر سازگار با Adblock plus باشد. خطوط با پیشوند ‘!’ نادیده گرفته می شوند.",
|
|
532
|
+
"description": "Short information about how to create custom filters"
|
|
533
|
+
},
|
|
534
|
+
"1pTrustWarning": {
|
|
535
|
+
"message": "Do not add filters from untrusted sources.",
|
|
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>source destination type action</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₀ باید بر روی کدام یک از صفحات وب غیر فعال باشد. در هر خط فقط یک مورد. دستور العملهای نامعتبر بدون اشاره ای نادیده گرفته شده و بیرون انداخته میشوند.",
|
|
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-whitelist_{{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: ثبتکننده رویدادها",
|
|
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": "eventful",
|
|
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": "1st-party",
|
|
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": "Partyness",
|
|
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": "{{action}} درخواست های شبکه از نوع {{type}}{{br}} که مطابقت دارد با آدرس اینترنی {{url}}{{br}} و سرچشمه میگیرد از {{origin}}،{{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": "فیلتر ایستا <code>{{filter}}</code> در هیچ یک از لیستهای فیلتر فعال پیدا نشد",
|
|
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": "Preserve at most {{input}} page loads per tab",
|
|
840
|
+
"description": "A logger setting"
|
|
841
|
+
},
|
|
842
|
+
"loggerSettingPerTabMaxEntries": {
|
|
843
|
+
"message": "لطفا در هر تب حداکثر {{input}} مدخل نگهدارید",
|
|
844
|
+
"description": "A logger setting"
|
|
845
|
+
},
|
|
846
|
+
"loggerSettingPerEntryLineCount": {
|
|
847
|
+
"message": "Use {{input}} lines per entry in vertically expanded mode",
|
|
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}} Context",
|
|
864
|
+
"description": "A label for the context column"
|
|
865
|
+
},
|
|
866
|
+
"loggerSettingHideColumnPartyness": {
|
|
867
|
+
"message": "{{input}} Partyness",
|
|
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": "مارکداون",
|
|
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": "مستنداتی که در <code>uBlock/wiki</code> هست را بخوانید تا با تمام امکانات uBlock Origin آشنا شوید.",
|
|
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> ارائه میشود.",
|
|
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": "Report filter issues with specific websites to the <span data-url=\"https://github.com/uBlockOrigin/uAssets/issues?q=is%3Aissue\"><code>uBlockOrigin/uAssets</code> issue tracker</span>. <u>Requires a GitHub account.</u>",
|
|
920
|
+
"description": "First paragraph of 'Filter issues' section in Support pane"
|
|
921
|
+
},
|
|
922
|
+
"supportS3P2": {
|
|
923
|
+
"message": "<b>مهم:</b> از مسدودکنندههای مشابه دیگر در کنار یوبلاک اوریجین استفاده نکنید. این کار ممکن است باعث ایجاد مشکل در فیلترها برای برخی سایتها شود.",
|
|
924
|
+
"description": "Second paragraph of 'Filter issues' section in Support pane"
|
|
925
|
+
},
|
|
926
|
+
"supportS3P3": {
|
|
927
|
+
"message": "<b>Tips:</b> Be sure your filter lists are up to date. <span data-url=\"logger-ui.html#_\">The logger</span> is the primary tool to diagnose filter-related issues.",
|
|
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": "Report issues with uBlock Origin itself to the <span data-url=\"https://github.com/uBlockOrigin/uBlock-issues/issues?q=is%3Aissue\"><code>uBlockOrigin/uBlock-issue</code> issue tracker</span>. <u>Requires a GitHub account.</u>",
|
|
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": "Filter lists are updated daily. Be sure your issue has not already been addressed in the most recent filter lists.",
|
|
960
|
+
"description": "A paragraph in the filter issue reporter section"
|
|
961
|
+
},
|
|
962
|
+
"supportS6P2S2": {
|
|
963
|
+
"message": "Verify that the issue still exists after reloading the problematic webpage.",
|
|
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": "Has overlays or other nuisances",
|
|
984
|
+
"description": "An entry in the widget used to select the type of issue"
|
|
985
|
+
},
|
|
986
|
+
"supportS6Select1Option3": {
|
|
987
|
+
"message": "یوبلاک اوریجین را تشخیص میدهد",
|
|
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": "وقتی یوبلاک اوریجین فعال است عملکرد درستی ندارد",
|
|
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://fa.wikipedia.org/wiki/%D9%86%D8%A7%D9%85%D9%86%D8%A7%D8%B3%D8%A8_%D8%A8%D8%B1%D8%A7%DB%8C_%DA%A9%D8%A7%D8%B1\">\"نامناسب برای کار\"</a>)",
|
|
1004
|
+
"description": "A checkbox to use for NSFW sites"
|
|
1005
|
+
},
|
|
1006
|
+
"supportRedact": {
|
|
1007
|
+
"message": "Redact",
|
|
1008
|
+
"description": "Text for 'Redact' button"
|
|
1009
|
+
},
|
|
1010
|
+
"supportUnredact": {
|
|
1011
|
+
"message": "Unredact",
|
|
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": "لیستهای فیلتر اصلی uBlock Origin به صورت آزاد در <a href=\"https://wikipedia.org/wiki/Content_delivery_network\">این شبکههای تحویل محتوا</a> میزبانی میشوند.",
|
|
1048
|
+
"description": "Shown in the About pane"
|
|
1049
|
+
},
|
|
1050
|
+
"aboutCDNsInfo": {
|
|
1051
|
+
"message": "وقتی که لازم باشد تا یک لیست فیلتر به روزرسانی شود، از یکی از شبکههای تحویل محتوا به صورت تصادفی استفاده میشود",
|
|
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": "uBlock₀: آدرس اینترنتی زیر به فهرست فیلتر های سفارشی شما اضافه شود؟\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": "یک ساعت پیش",
|
|
1104
|
+
"description": "English: an hour ago"
|
|
1105
|
+
},
|
|
1106
|
+
"elapsedManyHoursAgo": {
|
|
1107
|
+
"message": "{{value}} ساعت قبل",
|
|
1108
|
+
"description": "English: {{value}} hours ago"
|
|
1109
|
+
},
|
|
1110
|
+
"elapsedOneDayAgo": {
|
|
1111
|
+
"message": "دیروز",
|
|
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": "Page blocked",
|
|
1132
|
+
"description": "Used as a title for the document-blocked page"
|
|
1133
|
+
},
|
|
1134
|
+
"docblockedPrompt1": {
|
|
1135
|
+
"message": "uBlock₀ از بارگذاری این صفحات جلوگیری کرده:",
|
|
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": "Don't warn me again about this site",
|
|
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": "Proceed",
|
|
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": "Subscribe to filter list...",
|
|
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": "View source code…",
|
|
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": "Toggle cosmetic filtering",
|
|
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": "کیلوبایت",
|
|
1264
|
+
"description": "short for 'kilobytes'"
|
|
1265
|
+
},
|
|
1266
|
+
"MB": {
|
|
1267
|
+
"message": "مگابایت",
|
|
1268
|
+
"description": "short for 'megabytes'"
|
|
1269
|
+
},
|
|
1270
|
+
"GB": {
|
|
1271
|
+
"message": "گیگابایت",
|
|
1272
|
+
"description": "short for 'gigabytes'"
|
|
1273
|
+
},
|
|
1274
|
+
"clickToLoad": {
|
|
1275
|
+
"message": "برای بازکردن کلیک نمایید",
|
|
1276
|
+
"description": "Message used in frame placeholders"
|
|
1277
|
+
},
|
|
1278
|
+
"linterMainReport": {
|
|
1279
|
+
"message": "Errors: {{count}}",
|
|
1280
|
+
"description": "Summary of number of errors as reported by the linter "
|
|
1281
|
+
},
|
|
1282
|
+
"unprocessedRequestTooltip": {
|
|
1283
|
+
"message": "Could not filter properly at browser launch. Reload the page to ensure proper filtering.",
|
|
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
|
+
}
|