├── .github └── ISSUE_TEMPLATE.md ├── .gitignore ├── .jshintrc ├── .travis.yml ├── CONTRIBUTING.md ├── LICENSE.txt ├── README.md ├── assets └── assets.json ├── dist ├── chromium │ └── publish-beta.py ├── firefox │ ├── publish-signed-beta.py │ ├── updates.json │ └── updates.template.json └── version ├── doc ├── MANIFESTO.md ├── README.md ├── description │ ├── description.am_ET.txt │ ├── description.ar_SA.txt │ ├── description.bg_BG.txt │ ├── description.bn_BD.txt │ ├── description.ca_ES.txt │ ├── description.cs_CZ.txt │ ├── description.da_DK.txt │ ├── description.de_DE.txt │ ├── description.el_GR.txt │ ├── description.es_ES.txt │ ├── description.et_EE.txt │ ├── description.fa_IR.txt │ ├── description.fi_FI.txt │ ├── description.fil_PH.txt │ ├── description.fr_FR.txt │ ├── description.gu_IN.txt │ ├── description.he_IL.txt │ ├── description.hi_IN.txt │ ├── description.hr_HR.txt │ ├── description.hu_HU.txt │ ├── description.id_ID.txt │ ├── description.it_IT.txt │ ├── description.ja_JP.txt │ ├── description.kn_IN.txt │ ├── description.ko_KR.txt │ ├── description.lt_LT.txt │ ├── description.lv_LV.txt │ ├── description.ml_IN.txt │ ├── description.mr_IN.txt │ ├── description.ms_MY.txt │ ├── description.nl_NL.txt │ ├── description.no_NO.txt │ ├── description.pl_PL.txt │ ├── description.pt_BR.txt │ ├── description.pt_PT.txt │ ├── description.ro_RO.txt │ ├── description.ru_RU.txt │ ├── description.sk_SK.txt │ ├── description.sl_SI.txt │ ├── description.sr_CS.txt │ ├── description.sv_SE.txt │ ├── description.sw_KE.txt │ ├── description.ta_IN.txt │ ├── description.te_IN.txt │ ├── description.th_TH.txt │ ├── description.tr_TR.txt │ ├── description.txt │ ├── description.uk_UA.txt │ ├── description.vi_VN.txt │ ├── description.zh_CN.txt │ └── description.zh_TW.txt ├── img │ ├── chromium-about-blank.png │ ├── chromium-privacy-settings.png │ ├── per-scope-switches.png │ ├── strict-https-at-work.png │ ├── wired-walkthru-1.png │ ├── wired-walkthru-2.png │ ├── wired-walkthru-3.png │ ├── wired-walkthru-4.png │ ├── wired-walkthru-5.png │ └── wired-walkthru-6.png └── screenshots │ ├── chrome-1.png │ ├── chrome-2.png │ ├── chrome-3.png │ ├── chrome-4.png │ ├── chrome-5.png │ ├── ff-1.png │ ├── ff-2.png │ ├── ff-3.png │ ├── ff-4.png │ ├── opera-1.png │ ├── opera-2.png │ ├── opera-3.png │ └── opera-4.png ├── platform ├── chromium │ ├── img │ │ └── browsericons │ │ │ ├── icon19-0.png │ │ │ ├── icon19-1.png │ │ │ ├── icon19-10.png │ │ │ ├── icon19-11.png │ │ │ ├── icon19-12.png │ │ │ ├── icon19-13.png │ │ │ ├── icon19-14.png │ │ │ ├── icon19-15.png │ │ │ ├── icon19-16.png │ │ │ ├── icon19-17.png │ │ │ ├── icon19-18.png │ │ │ ├── icon19-19.png │ │ │ ├── icon19-2.png │ │ │ ├── icon19-3.png │ │ │ ├── icon19-4.png │ │ │ ├── icon19-5.png │ │ │ ├── icon19-6.png │ │ │ ├── icon19-7.png │ │ │ ├── icon19-8.png │ │ │ ├── icon19-9.png │ │ │ ├── icon19-off.png │ │ │ └── icon38-off.png │ ├── manifest.json │ ├── vapi-background.js │ ├── vapi-client-extra.js │ ├── vapi-client.js │ ├── vapi-common.js │ ├── vapi-webrequest.js │ ├── vapi.js │ └── webext.js ├── firefox │ ├── manifest.json │ ├── vapi-webrequest.js │ └── webext.js └── opera │ └── manifest-add.json ├── src ├── _locales │ ├── am │ │ └── messages.json │ ├── ar │ │ └── messages.json │ ├── bg │ │ └── messages.json │ ├── bn │ │ └── messages.json │ ├── ca │ │ └── messages.json │ ├── cs │ │ └── messages.json │ ├── da │ │ └── messages.json │ ├── de │ │ └── messages.json │ ├── el │ │ └── messages.json │ ├── en │ │ └── messages.json │ ├── eo │ │ └── messages.json │ ├── es │ │ └── messages.json │ ├── et │ │ └── messages.json │ ├── fa │ │ └── messages.json │ ├── fi │ │ └── messages.json │ ├── fil │ │ └── messages.json │ ├── fr │ │ └── messages.json │ ├── gu │ │ └── messages.json │ ├── he │ │ └── messages.json │ ├── hi │ │ └── messages.json │ ├── hr │ │ └── messages.json │ ├── hu │ │ └── messages.json │ ├── id │ │ └── messages.json │ ├── it │ │ └── messages.json │ ├── ja │ │ └── messages.json │ ├── kn │ │ └── messages.json │ ├── ko │ │ └── messages.json │ ├── lt │ │ └── messages.json │ ├── lv │ │ └── messages.json │ ├── ml │ │ └── messages.json │ ├── mr │ │ └── messages.json │ ├── ms │ │ └── messages.json │ ├── nb │ │ └── messages.json │ ├── nl │ │ └── messages.json │ ├── pl │ │ └── messages.json │ ├── pt_BR │ │ └── messages.json │ ├── pt_PT │ │ └── messages.json │ ├── ro │ │ └── messages.json │ ├── ru │ │ └── messages.json │ ├── sk │ │ └── messages.json │ ├── sl │ │ └── messages.json │ ├── sr │ │ └── messages.json │ ├── sv │ │ └── messages.json │ ├── sw │ │ └── messages.json │ ├── ta │ │ └── messages.json │ ├── te │ │ └── messages.json │ ├── th │ │ └── messages.json │ ├── tr │ │ └── messages.json │ ├── uk │ │ └── messages.json │ ├── vi │ │ └── messages.json │ ├── zh_CN │ │ └── messages.json │ └── zh_TW │ │ └── messages.json ├── about.html ├── asset-viewer.html ├── background.html ├── cloud-ui.html ├── css │ ├── cloud-ui.css │ ├── codemirror.css │ ├── common.css │ ├── dashboard-common.css │ ├── dashboard.css │ ├── fa-icons.css │ ├── fonts │ │ └── Roboto_Condensed │ │ │ ├── LICENSE.txt │ │ │ ├── RobotoCondensed-Light.ttf │ │ │ └── RobotoCondensed-Regular.ttf │ ├── hosts-files.css │ ├── logger-ui.css │ ├── main-blocked.css │ ├── popup.css │ ├── raw-settings.css │ ├── scope-selector.css │ └── user-rules.css ├── dashboard.html ├── hosts-files.html ├── img │ ├── cloud.png │ ├── fontawesome │ │ ├── LICENSE.txt │ │ └── fontawesome-defs.svg │ ├── icon_128.png │ ├── icon_16.png │ ├── icon_64.png │ ├── matrix-group-hide.png │ ├── matrix-group-hline.png │ ├── matrix-group-show.png │ ├── permanent-black-small-cb.png │ ├── permanent-black-small.png │ ├── permanent-white-small-cb.png │ └── permanent-white-small.png ├── js │ ├── about.js │ ├── asset-viewer.js │ ├── assets.js │ ├── background.js │ ├── browsercache.js │ ├── cachestorage.js │ ├── cloud-ui.js │ ├── codemirror │ │ ├── mode │ │ │ └── raw-settings.js │ │ └── search.js │ ├── console.js │ ├── contentscript-no-inline-script.js │ ├── contentscript-no-workers.js │ ├── contentscript-start.js │ ├── contentscript.js │ ├── cookies.js │ ├── dashboard-common.js │ ├── dashboard.js │ ├── fa-icons.js │ ├── filtering-context.js │ ├── hntrie.js │ ├── hosts-files.js │ ├── httpsb.js │ ├── i18n.js │ ├── liquid-dict.js │ ├── logger-ui.js │ ├── logger.js │ ├── lz4.js │ ├── main-blocked.js │ ├── matrix.js │ ├── messaging.js │ ├── pagestats.js │ ├── popup.js │ ├── raw-settings.js │ ├── recipe-manager.js │ ├── scope-selector.js │ ├── settings.js │ ├── start.js │ ├── storage.js │ ├── tab.js │ ├── traffic.js │ ├── udom.js │ ├── uritools.js │ ├── user-rules.js │ ├── usersettings.js │ ├── utils.js │ └── wasm │ │ ├── README.md │ │ ├── hntrie.wasm │ │ └── hntrie.wat ├── lib │ ├── codemirror │ │ ├── LICENSE │ │ ├── README.md │ │ ├── addon │ │ │ ├── display │ │ │ │ └── panel.js │ │ │ ├── merge │ │ │ │ ├── merge.css │ │ │ │ └── merge.js │ │ │ ├── scroll │ │ │ │ └── annotatescrollbar.js │ │ │ ├── search │ │ │ │ ├── matchesonscrollbar.css │ │ │ │ ├── matchesonscrollbar.js │ │ │ │ └── searchcursor.js │ │ │ └── selection │ │ │ │ └── active-line.js │ │ └── lib │ │ │ ├── codemirror.css │ │ │ └── codemirror.js │ ├── diff │ │ ├── README.md │ │ └── swatinem_diff.js │ ├── lz4 │ │ ├── README.md │ │ ├── lz4-block-codec-any.js │ │ ├── lz4-block-codec-js.js │ │ ├── lz4-block-codec-wasm.js │ │ ├── lz4-block-codec.wasm │ │ └── lz4-block-codec.wat │ ├── publicsuffixlist │ │ ├── publicsuffixlist.js │ │ └── wasm │ │ │ ├── README.md │ │ │ ├── publicsuffixlist.wasm │ │ │ └── publicsuffixlist.wat │ └── punycode.js ├── logger-ui.html ├── main-blocked.html ├── popup.html ├── raw-settings.html ├── settings.html └── user-rules.html └── tools ├── import-crowdin.sh ├── make-assets.sh ├── make-chromium-meta.py ├── make-chromium.sh ├── make-clean.sh ├── make-firefox-meta.py ├── make-firefox.sh ├── make-opera-meta.py └── make-opera.sh /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhill/uMatrix/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | dist/build/ 2 | -------------------------------------------------------------------------------- /.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhill/uMatrix/HEAD/.jshintrc -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhill/uMatrix/HEAD/.travis.yml -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhill/uMatrix/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhill/uMatrix/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhill/uMatrix/HEAD/README.md -------------------------------------------------------------------------------- /assets/assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhill/uMatrix/HEAD/assets/assets.json -------------------------------------------------------------------------------- /dist/chromium/publish-beta.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhill/uMatrix/HEAD/dist/chromium/publish-beta.py -------------------------------------------------------------------------------- /dist/firefox/publish-signed-beta.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhill/uMatrix/HEAD/dist/firefox/publish-signed-beta.py -------------------------------------------------------------------------------- /dist/firefox/updates.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhill/uMatrix/HEAD/dist/firefox/updates.json -------------------------------------------------------------------------------- /dist/firefox/updates.template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhill/uMatrix/HEAD/dist/firefox/updates.template.json -------------------------------------------------------------------------------- /dist/version: -------------------------------------------------------------------------------- 1 | 1.4.3.0 2 | -------------------------------------------------------------------------------- /doc/MANIFESTO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhill/uMatrix/HEAD/doc/MANIFESTO.md -------------------------------------------------------------------------------- /doc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhill/uMatrix/HEAD/doc/README.md -------------------------------------------------------------------------------- /doc/description/description.am_ET.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhill/uMatrix/HEAD/doc/description/description.am_ET.txt -------------------------------------------------------------------------------- /doc/description/description.ar_SA.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhill/uMatrix/HEAD/doc/description/description.ar_SA.txt -------------------------------------------------------------------------------- /doc/description/description.bg_BG.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhill/uMatrix/HEAD/doc/description/description.bg_BG.txt -------------------------------------------------------------------------------- /doc/description/description.bn_BD.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhill/uMatrix/HEAD/doc/description/description.bn_BD.txt -------------------------------------------------------------------------------- /doc/description/description.ca_ES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhill/uMatrix/HEAD/doc/description/description.ca_ES.txt -------------------------------------------------------------------------------- /doc/description/description.cs_CZ.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhill/uMatrix/HEAD/doc/description/description.cs_CZ.txt -------------------------------------------------------------------------------- /doc/description/description.da_DK.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhill/uMatrix/HEAD/doc/description/description.da_DK.txt -------------------------------------------------------------------------------- /doc/description/description.de_DE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhill/uMatrix/HEAD/doc/description/description.de_DE.txt -------------------------------------------------------------------------------- /doc/description/description.el_GR.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhill/uMatrix/HEAD/doc/description/description.el_GR.txt -------------------------------------------------------------------------------- /doc/description/description.es_ES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhill/uMatrix/HEAD/doc/description/description.es_ES.txt -------------------------------------------------------------------------------- /doc/description/description.et_EE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhill/uMatrix/HEAD/doc/description/description.et_EE.txt -------------------------------------------------------------------------------- /doc/description/description.fa_IR.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhill/uMatrix/HEAD/doc/description/description.fa_IR.txt -------------------------------------------------------------------------------- /doc/description/description.fi_FI.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhill/uMatrix/HEAD/doc/description/description.fi_FI.txt -------------------------------------------------------------------------------- /doc/description/description.fil_PH.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhill/uMatrix/HEAD/doc/description/description.fil_PH.txt -------------------------------------------------------------------------------- /doc/description/description.fr_FR.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhill/uMatrix/HEAD/doc/description/description.fr_FR.txt -------------------------------------------------------------------------------- /doc/description/description.gu_IN.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhill/uMatrix/HEAD/doc/description/description.gu_IN.txt -------------------------------------------------------------------------------- /doc/description/description.he_IL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhill/uMatrix/HEAD/doc/description/description.he_IL.txt -------------------------------------------------------------------------------- /doc/description/description.hi_IN.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhill/uMatrix/HEAD/doc/description/description.hi_IN.txt -------------------------------------------------------------------------------- /doc/description/description.hr_HR.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhill/uMatrix/HEAD/doc/description/description.hr_HR.txt -------------------------------------------------------------------------------- /doc/description/description.hu_HU.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhill/uMatrix/HEAD/doc/description/description.hu_HU.txt -------------------------------------------------------------------------------- /doc/description/description.id_ID.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhill/uMatrix/HEAD/doc/description/description.id_ID.txt -------------------------------------------------------------------------------- /doc/description/description.it_IT.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhill/uMatrix/HEAD/doc/description/description.it_IT.txt -------------------------------------------------------------------------------- /doc/description/description.ja_JP.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhill/uMatrix/HEAD/doc/description/description.ja_JP.txt -------------------------------------------------------------------------------- /doc/description/description.kn_IN.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhill/uMatrix/HEAD/doc/description/description.kn_IN.txt -------------------------------------------------------------------------------- /doc/description/description.ko_KR.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhill/uMatrix/HEAD/doc/description/description.ko_KR.txt -------------------------------------------------------------------------------- /doc/description/description.lt_LT.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhill/uMatrix/HEAD/doc/description/description.lt_LT.txt -------------------------------------------------------------------------------- /doc/description/description.lv_LV.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhill/uMatrix/HEAD/doc/description/description.lv_LV.txt -------------------------------------------------------------------------------- /doc/description/description.ml_IN.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhill/uMatrix/HEAD/doc/description/description.ml_IN.txt -------------------------------------------------------------------------------- /doc/description/description.mr_IN.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhill/uMatrix/HEAD/doc/description/description.mr_IN.txt -------------------------------------------------------------------------------- /doc/description/description.ms_MY.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhill/uMatrix/HEAD/doc/description/description.ms_MY.txt -------------------------------------------------------------------------------- /doc/description/description.nl_NL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhill/uMatrix/HEAD/doc/description/description.nl_NL.txt -------------------------------------------------------------------------------- /doc/description/description.no_NO.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhill/uMatrix/HEAD/doc/description/description.no_NO.txt -------------------------------------------------------------------------------- /doc/description/description.pl_PL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhill/uMatrix/HEAD/doc/description/description.pl_PL.txt -------------------------------------------------------------------------------- /doc/description/description.pt_BR.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhill/uMatrix/HEAD/doc/description/description.pt_BR.txt -------------------------------------------------------------------------------- /doc/description/description.pt_PT.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhill/uMatrix/HEAD/doc/description/description.pt_PT.txt -------------------------------------------------------------------------------- /doc/description/description.ro_RO.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhill/uMatrix/HEAD/doc/description/description.ro_RO.txt -------------------------------------------------------------------------------- /doc/description/description.ru_RU.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhill/uMatrix/HEAD/doc/description/description.ru_RU.txt -------------------------------------------------------------------------------- /doc/description/description.sk_SK.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhill/uMatrix/HEAD/doc/description/description.sk_SK.txt -------------------------------------------------------------------------------- /doc/description/description.sl_SI.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhill/uMatrix/HEAD/doc/description/description.sl_SI.txt -------------------------------------------------------------------------------- /doc/description/description.sr_CS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhill/uMatrix/HEAD/doc/description/description.sr_CS.txt -------------------------------------------------------------------------------- /doc/description/description.sv_SE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhill/uMatrix/HEAD/doc/description/description.sv_SE.txt -------------------------------------------------------------------------------- /doc/description/description.sw_KE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhill/uMatrix/HEAD/doc/description/description.sw_KE.txt -------------------------------------------------------------------------------- /doc/description/description.ta_IN.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhill/uMatrix/HEAD/doc/description/description.ta_IN.txt -------------------------------------------------------------------------------- /doc/description/description.te_IN.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhill/uMatrix/HEAD/doc/description/description.te_IN.txt -------------------------------------------------------------------------------- /doc/description/description.th_TH.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhill/uMatrix/HEAD/doc/description/description.th_TH.txt -------------------------------------------------------------------------------- /doc/description/description.tr_TR.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhill/uMatrix/HEAD/doc/description/description.tr_TR.txt -------------------------------------------------------------------------------- /doc/description/description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhill/uMatrix/HEAD/doc/description/description.txt -------------------------------------------------------------------------------- /doc/description/description.uk_UA.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhill/uMatrix/HEAD/doc/description/description.uk_UA.txt -------------------------------------------------------------------------------- /doc/description/description.vi_VN.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhill/uMatrix/HEAD/doc/description/description.vi_VN.txt -------------------------------------------------------------------------------- /doc/description/description.zh_CN.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhill/uMatrix/HEAD/doc/description/description.zh_CN.txt -------------------------------------------------------------------------------- /doc/description/description.zh_TW.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhill/uMatrix/HEAD/doc/description/description.zh_TW.txt -------------------------------------------------------------------------------- /doc/img/chromium-about-blank.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhill/uMatrix/HEAD/doc/img/chromium-about-blank.png -------------------------------------------------------------------------------- /doc/img/chromium-privacy-settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhill/uMatrix/HEAD/doc/img/chromium-privacy-settings.png -------------------------------------------------------------------------------- /doc/img/per-scope-switches.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhill/uMatrix/HEAD/doc/img/per-scope-switches.png -------------------------------------------------------------------------------- /doc/img/strict-https-at-work.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhill/uMatrix/HEAD/doc/img/strict-https-at-work.png -------------------------------------------------------------------------------- /doc/img/wired-walkthru-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhill/uMatrix/HEAD/doc/img/wired-walkthru-1.png -------------------------------------------------------------------------------- /doc/img/wired-walkthru-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhill/uMatrix/HEAD/doc/img/wired-walkthru-2.png -------------------------------------------------------------------------------- /doc/img/wired-walkthru-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhill/uMatrix/HEAD/doc/img/wired-walkthru-3.png -------------------------------------------------------------------------------- /doc/img/wired-walkthru-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhill/uMatrix/HEAD/doc/img/wired-walkthru-4.png -------------------------------------------------------------------------------- /doc/img/wired-walkthru-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhill/uMatrix/HEAD/doc/img/wired-walkthru-5.png -------------------------------------------------------------------------------- /doc/img/wired-walkthru-6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhill/uMatrix/HEAD/doc/img/wired-walkthru-6.png -------------------------------------------------------------------------------- /doc/screenshots/chrome-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhill/uMatrix/HEAD/doc/screenshots/chrome-1.png -------------------------------------------------------------------------------- /doc/screenshots/chrome-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhill/uMatrix/HEAD/doc/screenshots/chrome-2.png -------------------------------------------------------------------------------- /doc/screenshots/chrome-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhill/uMatrix/HEAD/doc/screenshots/chrome-3.png -------------------------------------------------------------------------------- /doc/screenshots/chrome-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhill/uMatrix/HEAD/doc/screenshots/chrome-4.png -------------------------------------------------------------------------------- /doc/screenshots/chrome-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhill/uMatrix/HEAD/doc/screenshots/chrome-5.png -------------------------------------------------------------------------------- /doc/screenshots/ff-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhill/uMatrix/HEAD/doc/screenshots/ff-1.png -------------------------------------------------------------------------------- /doc/screenshots/ff-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhill/uMatrix/HEAD/doc/screenshots/ff-2.png -------------------------------------------------------------------------------- /doc/screenshots/ff-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhill/uMatrix/HEAD/doc/screenshots/ff-3.png -------------------------------------------------------------------------------- /doc/screenshots/ff-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhill/uMatrix/HEAD/doc/screenshots/ff-4.png -------------------------------------------------------------------------------- /doc/screenshots/opera-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhill/uMatrix/HEAD/doc/screenshots/opera-1.png -------------------------------------------------------------------------------- /doc/screenshots/opera-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhill/uMatrix/HEAD/doc/screenshots/opera-2.png -------------------------------------------------------------------------------- /doc/screenshots/opera-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhill/uMatrix/HEAD/doc/screenshots/opera-3.png -------------------------------------------------------------------------------- /doc/screenshots/opera-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhill/uMatrix/HEAD/doc/screenshots/opera-4.png -------------------------------------------------------------------------------- /platform/chromium/img/browsericons/icon19-0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhill/uMatrix/HEAD/platform/chromium/img/browsericons/icon19-0.png -------------------------------------------------------------------------------- /platform/chromium/img/browsericons/icon19-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhill/uMatrix/HEAD/platform/chromium/img/browsericons/icon19-1.png -------------------------------------------------------------------------------- /platform/chromium/img/browsericons/icon19-10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhill/uMatrix/HEAD/platform/chromium/img/browsericons/icon19-10.png -------------------------------------------------------------------------------- /platform/chromium/img/browsericons/icon19-11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhill/uMatrix/HEAD/platform/chromium/img/browsericons/icon19-11.png -------------------------------------------------------------------------------- /platform/chromium/img/browsericons/icon19-12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhill/uMatrix/HEAD/platform/chromium/img/browsericons/icon19-12.png -------------------------------------------------------------------------------- /platform/chromium/img/browsericons/icon19-13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhill/uMatrix/HEAD/platform/chromium/img/browsericons/icon19-13.png -------------------------------------------------------------------------------- /platform/chromium/img/browsericons/icon19-14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhill/uMatrix/HEAD/platform/chromium/img/browsericons/icon19-14.png -------------------------------------------------------------------------------- /platform/chromium/img/browsericons/icon19-15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhill/uMatrix/HEAD/platform/chromium/img/browsericons/icon19-15.png -------------------------------------------------------------------------------- /platform/chromium/img/browsericons/icon19-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhill/uMatrix/HEAD/platform/chromium/img/browsericons/icon19-16.png -------------------------------------------------------------------------------- /platform/chromium/img/browsericons/icon19-17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhill/uMatrix/HEAD/platform/chromium/img/browsericons/icon19-17.png -------------------------------------------------------------------------------- /platform/chromium/img/browsericons/icon19-18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhill/uMatrix/HEAD/platform/chromium/img/browsericons/icon19-18.png -------------------------------------------------------------------------------- /platform/chromium/img/browsericons/icon19-19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhill/uMatrix/HEAD/platform/chromium/img/browsericons/icon19-19.png -------------------------------------------------------------------------------- /platform/chromium/img/browsericons/icon19-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhill/uMatrix/HEAD/platform/chromium/img/browsericons/icon19-2.png -------------------------------------------------------------------------------- /platform/chromium/img/browsericons/icon19-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhill/uMatrix/HEAD/platform/chromium/img/browsericons/icon19-3.png -------------------------------------------------------------------------------- /platform/chromium/img/browsericons/icon19-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhill/uMatrix/HEAD/platform/chromium/img/browsericons/icon19-4.png -------------------------------------------------------------------------------- /platform/chromium/img/browsericons/icon19-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhill/uMatrix/HEAD/platform/chromium/img/browsericons/icon19-5.png -------------------------------------------------------------------------------- /platform/chromium/img/browsericons/icon19-6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhill/uMatrix/HEAD/platform/chromium/img/browsericons/icon19-6.png -------------------------------------------------------------------------------- /platform/chromium/img/browsericons/icon19-7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhill/uMatrix/HEAD/platform/chromium/img/browsericons/icon19-7.png -------------------------------------------------------------------------------- /platform/chromium/img/browsericons/icon19-8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhill/uMatrix/HEAD/platform/chromium/img/browsericons/icon19-8.png -------------------------------------------------------------------------------- /platform/chromium/img/browsericons/icon19-9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhill/uMatrix/HEAD/platform/chromium/img/browsericons/icon19-9.png -------------------------------------------------------------------------------- /platform/chromium/img/browsericons/icon19-off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhill/uMatrix/HEAD/platform/chromium/img/browsericons/icon19-off.png -------------------------------------------------------------------------------- /platform/chromium/img/browsericons/icon38-off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhill/uMatrix/HEAD/platform/chromium/img/browsericons/icon38-off.png -------------------------------------------------------------------------------- /platform/chromium/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhill/uMatrix/HEAD/platform/chromium/manifest.json -------------------------------------------------------------------------------- /platform/chromium/vapi-background.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhill/uMatrix/HEAD/platform/chromium/vapi-background.js -------------------------------------------------------------------------------- /platform/chromium/vapi-client-extra.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhill/uMatrix/HEAD/platform/chromium/vapi-client-extra.js -------------------------------------------------------------------------------- /platform/chromium/vapi-client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhill/uMatrix/HEAD/platform/chromium/vapi-client.js -------------------------------------------------------------------------------- /platform/chromium/vapi-common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhill/uMatrix/HEAD/platform/chromium/vapi-common.js -------------------------------------------------------------------------------- /platform/chromium/vapi-webrequest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhill/uMatrix/HEAD/platform/chromium/vapi-webrequest.js -------------------------------------------------------------------------------- /platform/chromium/vapi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhill/uMatrix/HEAD/platform/chromium/vapi.js -------------------------------------------------------------------------------- /platform/chromium/webext.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhill/uMatrix/HEAD/platform/chromium/webext.js -------------------------------------------------------------------------------- /platform/firefox/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhill/uMatrix/HEAD/platform/firefox/manifest.json -------------------------------------------------------------------------------- /platform/firefox/vapi-webrequest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhill/uMatrix/HEAD/platform/firefox/vapi-webrequest.js -------------------------------------------------------------------------------- /platform/firefox/webext.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhill/uMatrix/HEAD/platform/firefox/webext.js -------------------------------------------------------------------------------- /platform/opera/manifest-add.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhill/uMatrix/HEAD/platform/opera/manifest-add.json -------------------------------------------------------------------------------- /src/_locales/am/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhill/uMatrix/HEAD/src/_locales/am/messages.json -------------------------------------------------------------------------------- /src/_locales/ar/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhill/uMatrix/HEAD/src/_locales/ar/messages.json -------------------------------------------------------------------------------- /src/_locales/bg/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhill/uMatrix/HEAD/src/_locales/bg/messages.json -------------------------------------------------------------------------------- /src/_locales/bn/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhill/uMatrix/HEAD/src/_locales/bn/messages.json -------------------------------------------------------------------------------- /src/_locales/ca/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhill/uMatrix/HEAD/src/_locales/ca/messages.json -------------------------------------------------------------------------------- /src/_locales/cs/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhill/uMatrix/HEAD/src/_locales/cs/messages.json -------------------------------------------------------------------------------- /src/_locales/da/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhill/uMatrix/HEAD/src/_locales/da/messages.json -------------------------------------------------------------------------------- /src/_locales/de/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhill/uMatrix/HEAD/src/_locales/de/messages.json -------------------------------------------------------------------------------- /src/_locales/el/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhill/uMatrix/HEAD/src/_locales/el/messages.json -------------------------------------------------------------------------------- /src/_locales/en/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhill/uMatrix/HEAD/src/_locales/en/messages.json -------------------------------------------------------------------------------- /src/_locales/eo/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhill/uMatrix/HEAD/src/_locales/eo/messages.json -------------------------------------------------------------------------------- /src/_locales/es/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhill/uMatrix/HEAD/src/_locales/es/messages.json -------------------------------------------------------------------------------- /src/_locales/et/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhill/uMatrix/HEAD/src/_locales/et/messages.json -------------------------------------------------------------------------------- /src/_locales/fa/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhill/uMatrix/HEAD/src/_locales/fa/messages.json -------------------------------------------------------------------------------- /src/_locales/fi/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhill/uMatrix/HEAD/src/_locales/fi/messages.json -------------------------------------------------------------------------------- /src/_locales/fil/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhill/uMatrix/HEAD/src/_locales/fil/messages.json -------------------------------------------------------------------------------- /src/_locales/fr/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhill/uMatrix/HEAD/src/_locales/fr/messages.json -------------------------------------------------------------------------------- /src/_locales/gu/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhill/uMatrix/HEAD/src/_locales/gu/messages.json -------------------------------------------------------------------------------- /src/_locales/he/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhill/uMatrix/HEAD/src/_locales/he/messages.json -------------------------------------------------------------------------------- /src/_locales/hi/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhill/uMatrix/HEAD/src/_locales/hi/messages.json -------------------------------------------------------------------------------- /src/_locales/hr/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhill/uMatrix/HEAD/src/_locales/hr/messages.json -------------------------------------------------------------------------------- /src/_locales/hu/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhill/uMatrix/HEAD/src/_locales/hu/messages.json -------------------------------------------------------------------------------- /src/_locales/id/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhill/uMatrix/HEAD/src/_locales/id/messages.json -------------------------------------------------------------------------------- /src/_locales/it/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhill/uMatrix/HEAD/src/_locales/it/messages.json -------------------------------------------------------------------------------- /src/_locales/ja/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhill/uMatrix/HEAD/src/_locales/ja/messages.json -------------------------------------------------------------------------------- /src/_locales/kn/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhill/uMatrix/HEAD/src/_locales/kn/messages.json -------------------------------------------------------------------------------- /src/_locales/ko/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhill/uMatrix/HEAD/src/_locales/ko/messages.json -------------------------------------------------------------------------------- /src/_locales/lt/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhill/uMatrix/HEAD/src/_locales/lt/messages.json -------------------------------------------------------------------------------- /src/_locales/lv/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhill/uMatrix/HEAD/src/_locales/lv/messages.json -------------------------------------------------------------------------------- /src/_locales/ml/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhill/uMatrix/HEAD/src/_locales/ml/messages.json -------------------------------------------------------------------------------- /src/_locales/mr/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhill/uMatrix/HEAD/src/_locales/mr/messages.json -------------------------------------------------------------------------------- /src/_locales/ms/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhill/uMatrix/HEAD/src/_locales/ms/messages.json -------------------------------------------------------------------------------- /src/_locales/nb/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhill/uMatrix/HEAD/src/_locales/nb/messages.json -------------------------------------------------------------------------------- /src/_locales/nl/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhill/uMatrix/HEAD/src/_locales/nl/messages.json -------------------------------------------------------------------------------- /src/_locales/pl/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhill/uMatrix/HEAD/src/_locales/pl/messages.json -------------------------------------------------------------------------------- /src/_locales/pt_BR/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhill/uMatrix/HEAD/src/_locales/pt_BR/messages.json -------------------------------------------------------------------------------- /src/_locales/pt_PT/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhill/uMatrix/HEAD/src/_locales/pt_PT/messages.json -------------------------------------------------------------------------------- /src/_locales/ro/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhill/uMatrix/HEAD/src/_locales/ro/messages.json -------------------------------------------------------------------------------- /src/_locales/ru/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhill/uMatrix/HEAD/src/_locales/ru/messages.json -------------------------------------------------------------------------------- /src/_locales/sk/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhill/uMatrix/HEAD/src/_locales/sk/messages.json -------------------------------------------------------------------------------- /src/_locales/sl/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhill/uMatrix/HEAD/src/_locales/sl/messages.json -------------------------------------------------------------------------------- /src/_locales/sr/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhill/uMatrix/HEAD/src/_locales/sr/messages.json -------------------------------------------------------------------------------- /src/_locales/sv/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhill/uMatrix/HEAD/src/_locales/sv/messages.json -------------------------------------------------------------------------------- /src/_locales/sw/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhill/uMatrix/HEAD/src/_locales/sw/messages.json -------------------------------------------------------------------------------- /src/_locales/ta/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhill/uMatrix/HEAD/src/_locales/ta/messages.json -------------------------------------------------------------------------------- /src/_locales/te/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhill/uMatrix/HEAD/src/_locales/te/messages.json -------------------------------------------------------------------------------- /src/_locales/th/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhill/uMatrix/HEAD/src/_locales/th/messages.json -------------------------------------------------------------------------------- /src/_locales/tr/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhill/uMatrix/HEAD/src/_locales/tr/messages.json -------------------------------------------------------------------------------- /src/_locales/uk/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhill/uMatrix/HEAD/src/_locales/uk/messages.json -------------------------------------------------------------------------------- /src/_locales/vi/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhill/uMatrix/HEAD/src/_locales/vi/messages.json -------------------------------------------------------------------------------- /src/_locales/zh_CN/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhill/uMatrix/HEAD/src/_locales/zh_CN/messages.json -------------------------------------------------------------------------------- /src/_locales/zh_TW/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhill/uMatrix/HEAD/src/_locales/zh_TW/messages.json -------------------------------------------------------------------------------- /src/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhill/uMatrix/HEAD/src/about.html -------------------------------------------------------------------------------- /src/asset-viewer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhill/uMatrix/HEAD/src/asset-viewer.html -------------------------------------------------------------------------------- /src/background.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhill/uMatrix/HEAD/src/background.html -------------------------------------------------------------------------------- /src/cloud-ui.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhill/uMatrix/HEAD/src/cloud-ui.html -------------------------------------------------------------------------------- /src/css/cloud-ui.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhill/uMatrix/HEAD/src/css/cloud-ui.css -------------------------------------------------------------------------------- /src/css/codemirror.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhill/uMatrix/HEAD/src/css/codemirror.css -------------------------------------------------------------------------------- /src/css/common.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhill/uMatrix/HEAD/src/css/common.css -------------------------------------------------------------------------------- /src/css/dashboard-common.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhill/uMatrix/HEAD/src/css/dashboard-common.css -------------------------------------------------------------------------------- /src/css/dashboard.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhill/uMatrix/HEAD/src/css/dashboard.css -------------------------------------------------------------------------------- /src/css/fa-icons.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhill/uMatrix/HEAD/src/css/fa-icons.css -------------------------------------------------------------------------------- /src/css/fonts/Roboto_Condensed/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhill/uMatrix/HEAD/src/css/fonts/Roboto_Condensed/LICENSE.txt -------------------------------------------------------------------------------- /src/css/fonts/Roboto_Condensed/RobotoCondensed-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhill/uMatrix/HEAD/src/css/fonts/Roboto_Condensed/RobotoCondensed-Light.ttf -------------------------------------------------------------------------------- /src/css/fonts/Roboto_Condensed/RobotoCondensed-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhill/uMatrix/HEAD/src/css/fonts/Roboto_Condensed/RobotoCondensed-Regular.ttf -------------------------------------------------------------------------------- /src/css/hosts-files.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhill/uMatrix/HEAD/src/css/hosts-files.css -------------------------------------------------------------------------------- /src/css/logger-ui.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhill/uMatrix/HEAD/src/css/logger-ui.css -------------------------------------------------------------------------------- /src/css/main-blocked.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhill/uMatrix/HEAD/src/css/main-blocked.css -------------------------------------------------------------------------------- /src/css/popup.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhill/uMatrix/HEAD/src/css/popup.css -------------------------------------------------------------------------------- /src/css/raw-settings.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhill/uMatrix/HEAD/src/css/raw-settings.css -------------------------------------------------------------------------------- /src/css/scope-selector.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhill/uMatrix/HEAD/src/css/scope-selector.css -------------------------------------------------------------------------------- /src/css/user-rules.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhill/uMatrix/HEAD/src/css/user-rules.css -------------------------------------------------------------------------------- /src/dashboard.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhill/uMatrix/HEAD/src/dashboard.html -------------------------------------------------------------------------------- /src/hosts-files.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhill/uMatrix/HEAD/src/hosts-files.html -------------------------------------------------------------------------------- /src/img/cloud.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhill/uMatrix/HEAD/src/img/cloud.png -------------------------------------------------------------------------------- /src/img/fontawesome/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhill/uMatrix/HEAD/src/img/fontawesome/LICENSE.txt -------------------------------------------------------------------------------- /src/img/fontawesome/fontawesome-defs.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhill/uMatrix/HEAD/src/img/fontawesome/fontawesome-defs.svg -------------------------------------------------------------------------------- /src/img/icon_128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhill/uMatrix/HEAD/src/img/icon_128.png -------------------------------------------------------------------------------- /src/img/icon_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhill/uMatrix/HEAD/src/img/icon_16.png -------------------------------------------------------------------------------- /src/img/icon_64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhill/uMatrix/HEAD/src/img/icon_64.png -------------------------------------------------------------------------------- /src/img/matrix-group-hide.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhill/uMatrix/HEAD/src/img/matrix-group-hide.png -------------------------------------------------------------------------------- /src/img/matrix-group-hline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhill/uMatrix/HEAD/src/img/matrix-group-hline.png -------------------------------------------------------------------------------- /src/img/matrix-group-show.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhill/uMatrix/HEAD/src/img/matrix-group-show.png -------------------------------------------------------------------------------- /src/img/permanent-black-small-cb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhill/uMatrix/HEAD/src/img/permanent-black-small-cb.png -------------------------------------------------------------------------------- /src/img/permanent-black-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhill/uMatrix/HEAD/src/img/permanent-black-small.png -------------------------------------------------------------------------------- /src/img/permanent-white-small-cb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhill/uMatrix/HEAD/src/img/permanent-white-small-cb.png -------------------------------------------------------------------------------- /src/img/permanent-white-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhill/uMatrix/HEAD/src/img/permanent-white-small.png -------------------------------------------------------------------------------- /src/js/about.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhill/uMatrix/HEAD/src/js/about.js -------------------------------------------------------------------------------- /src/js/asset-viewer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhill/uMatrix/HEAD/src/js/asset-viewer.js -------------------------------------------------------------------------------- /src/js/assets.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhill/uMatrix/HEAD/src/js/assets.js -------------------------------------------------------------------------------- /src/js/background.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhill/uMatrix/HEAD/src/js/background.js -------------------------------------------------------------------------------- /src/js/browsercache.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhill/uMatrix/HEAD/src/js/browsercache.js -------------------------------------------------------------------------------- /src/js/cachestorage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhill/uMatrix/HEAD/src/js/cachestorage.js -------------------------------------------------------------------------------- /src/js/cloud-ui.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhill/uMatrix/HEAD/src/js/cloud-ui.js -------------------------------------------------------------------------------- /src/js/codemirror/mode/raw-settings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhill/uMatrix/HEAD/src/js/codemirror/mode/raw-settings.js -------------------------------------------------------------------------------- /src/js/codemirror/search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhill/uMatrix/HEAD/src/js/codemirror/search.js -------------------------------------------------------------------------------- /src/js/console.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhill/uMatrix/HEAD/src/js/console.js -------------------------------------------------------------------------------- /src/js/contentscript-no-inline-script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhill/uMatrix/HEAD/src/js/contentscript-no-inline-script.js -------------------------------------------------------------------------------- /src/js/contentscript-no-workers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhill/uMatrix/HEAD/src/js/contentscript-no-workers.js -------------------------------------------------------------------------------- /src/js/contentscript-start.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhill/uMatrix/HEAD/src/js/contentscript-start.js -------------------------------------------------------------------------------- /src/js/contentscript.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhill/uMatrix/HEAD/src/js/contentscript.js -------------------------------------------------------------------------------- /src/js/cookies.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhill/uMatrix/HEAD/src/js/cookies.js -------------------------------------------------------------------------------- /src/js/dashboard-common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhill/uMatrix/HEAD/src/js/dashboard-common.js -------------------------------------------------------------------------------- /src/js/dashboard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhill/uMatrix/HEAD/src/js/dashboard.js -------------------------------------------------------------------------------- /src/js/fa-icons.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhill/uMatrix/HEAD/src/js/fa-icons.js -------------------------------------------------------------------------------- /src/js/filtering-context.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhill/uMatrix/HEAD/src/js/filtering-context.js -------------------------------------------------------------------------------- /src/js/hntrie.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhill/uMatrix/HEAD/src/js/hntrie.js -------------------------------------------------------------------------------- /src/js/hosts-files.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhill/uMatrix/HEAD/src/js/hosts-files.js -------------------------------------------------------------------------------- /src/js/httpsb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhill/uMatrix/HEAD/src/js/httpsb.js -------------------------------------------------------------------------------- /src/js/i18n.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhill/uMatrix/HEAD/src/js/i18n.js -------------------------------------------------------------------------------- /src/js/liquid-dict.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhill/uMatrix/HEAD/src/js/liquid-dict.js -------------------------------------------------------------------------------- /src/js/logger-ui.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhill/uMatrix/HEAD/src/js/logger-ui.js -------------------------------------------------------------------------------- /src/js/logger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhill/uMatrix/HEAD/src/js/logger.js -------------------------------------------------------------------------------- /src/js/lz4.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhill/uMatrix/HEAD/src/js/lz4.js -------------------------------------------------------------------------------- /src/js/main-blocked.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhill/uMatrix/HEAD/src/js/main-blocked.js -------------------------------------------------------------------------------- /src/js/matrix.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhill/uMatrix/HEAD/src/js/matrix.js -------------------------------------------------------------------------------- /src/js/messaging.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhill/uMatrix/HEAD/src/js/messaging.js -------------------------------------------------------------------------------- /src/js/pagestats.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhill/uMatrix/HEAD/src/js/pagestats.js -------------------------------------------------------------------------------- /src/js/popup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhill/uMatrix/HEAD/src/js/popup.js -------------------------------------------------------------------------------- /src/js/raw-settings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhill/uMatrix/HEAD/src/js/raw-settings.js -------------------------------------------------------------------------------- /src/js/recipe-manager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhill/uMatrix/HEAD/src/js/recipe-manager.js -------------------------------------------------------------------------------- /src/js/scope-selector.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhill/uMatrix/HEAD/src/js/scope-selector.js -------------------------------------------------------------------------------- /src/js/settings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhill/uMatrix/HEAD/src/js/settings.js -------------------------------------------------------------------------------- /src/js/start.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhill/uMatrix/HEAD/src/js/start.js -------------------------------------------------------------------------------- /src/js/storage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhill/uMatrix/HEAD/src/js/storage.js -------------------------------------------------------------------------------- /src/js/tab.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhill/uMatrix/HEAD/src/js/tab.js -------------------------------------------------------------------------------- /src/js/traffic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhill/uMatrix/HEAD/src/js/traffic.js -------------------------------------------------------------------------------- /src/js/udom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhill/uMatrix/HEAD/src/js/udom.js -------------------------------------------------------------------------------- /src/js/uritools.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhill/uMatrix/HEAD/src/js/uritools.js -------------------------------------------------------------------------------- /src/js/user-rules.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhill/uMatrix/HEAD/src/js/user-rules.js -------------------------------------------------------------------------------- /src/js/usersettings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhill/uMatrix/HEAD/src/js/usersettings.js -------------------------------------------------------------------------------- /src/js/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhill/uMatrix/HEAD/src/js/utils.js -------------------------------------------------------------------------------- /src/js/wasm/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhill/uMatrix/HEAD/src/js/wasm/README.md -------------------------------------------------------------------------------- /src/js/wasm/hntrie.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhill/uMatrix/HEAD/src/js/wasm/hntrie.wasm -------------------------------------------------------------------------------- /src/js/wasm/hntrie.wat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhill/uMatrix/HEAD/src/js/wasm/hntrie.wat -------------------------------------------------------------------------------- /src/lib/codemirror/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhill/uMatrix/HEAD/src/lib/codemirror/LICENSE -------------------------------------------------------------------------------- /src/lib/codemirror/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhill/uMatrix/HEAD/src/lib/codemirror/README.md -------------------------------------------------------------------------------- /src/lib/codemirror/addon/display/panel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhill/uMatrix/HEAD/src/lib/codemirror/addon/display/panel.js -------------------------------------------------------------------------------- /src/lib/codemirror/addon/merge/merge.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhill/uMatrix/HEAD/src/lib/codemirror/addon/merge/merge.css -------------------------------------------------------------------------------- /src/lib/codemirror/addon/merge/merge.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhill/uMatrix/HEAD/src/lib/codemirror/addon/merge/merge.js -------------------------------------------------------------------------------- /src/lib/codemirror/addon/scroll/annotatescrollbar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhill/uMatrix/HEAD/src/lib/codemirror/addon/scroll/annotatescrollbar.js -------------------------------------------------------------------------------- /src/lib/codemirror/addon/search/matchesonscrollbar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhill/uMatrix/HEAD/src/lib/codemirror/addon/search/matchesonscrollbar.css -------------------------------------------------------------------------------- /src/lib/codemirror/addon/search/matchesonscrollbar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhill/uMatrix/HEAD/src/lib/codemirror/addon/search/matchesonscrollbar.js -------------------------------------------------------------------------------- /src/lib/codemirror/addon/search/searchcursor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhill/uMatrix/HEAD/src/lib/codemirror/addon/search/searchcursor.js -------------------------------------------------------------------------------- /src/lib/codemirror/addon/selection/active-line.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhill/uMatrix/HEAD/src/lib/codemirror/addon/selection/active-line.js -------------------------------------------------------------------------------- /src/lib/codemirror/lib/codemirror.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhill/uMatrix/HEAD/src/lib/codemirror/lib/codemirror.css -------------------------------------------------------------------------------- /src/lib/codemirror/lib/codemirror.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhill/uMatrix/HEAD/src/lib/codemirror/lib/codemirror.js -------------------------------------------------------------------------------- /src/lib/diff/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhill/uMatrix/HEAD/src/lib/diff/README.md -------------------------------------------------------------------------------- /src/lib/diff/swatinem_diff.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhill/uMatrix/HEAD/src/lib/diff/swatinem_diff.js -------------------------------------------------------------------------------- /src/lib/lz4/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhill/uMatrix/HEAD/src/lib/lz4/README.md -------------------------------------------------------------------------------- /src/lib/lz4/lz4-block-codec-any.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhill/uMatrix/HEAD/src/lib/lz4/lz4-block-codec-any.js -------------------------------------------------------------------------------- /src/lib/lz4/lz4-block-codec-js.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhill/uMatrix/HEAD/src/lib/lz4/lz4-block-codec-js.js -------------------------------------------------------------------------------- /src/lib/lz4/lz4-block-codec-wasm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhill/uMatrix/HEAD/src/lib/lz4/lz4-block-codec-wasm.js -------------------------------------------------------------------------------- /src/lib/lz4/lz4-block-codec.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhill/uMatrix/HEAD/src/lib/lz4/lz4-block-codec.wasm -------------------------------------------------------------------------------- /src/lib/lz4/lz4-block-codec.wat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhill/uMatrix/HEAD/src/lib/lz4/lz4-block-codec.wat -------------------------------------------------------------------------------- /src/lib/publicsuffixlist/publicsuffixlist.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhill/uMatrix/HEAD/src/lib/publicsuffixlist/publicsuffixlist.js -------------------------------------------------------------------------------- /src/lib/publicsuffixlist/wasm/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhill/uMatrix/HEAD/src/lib/publicsuffixlist/wasm/README.md -------------------------------------------------------------------------------- /src/lib/publicsuffixlist/wasm/publicsuffixlist.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhill/uMatrix/HEAD/src/lib/publicsuffixlist/wasm/publicsuffixlist.wasm -------------------------------------------------------------------------------- /src/lib/publicsuffixlist/wasm/publicsuffixlist.wat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhill/uMatrix/HEAD/src/lib/publicsuffixlist/wasm/publicsuffixlist.wat -------------------------------------------------------------------------------- /src/lib/punycode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhill/uMatrix/HEAD/src/lib/punycode.js -------------------------------------------------------------------------------- /src/logger-ui.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhill/uMatrix/HEAD/src/logger-ui.html -------------------------------------------------------------------------------- /src/main-blocked.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhill/uMatrix/HEAD/src/main-blocked.html -------------------------------------------------------------------------------- /src/popup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhill/uMatrix/HEAD/src/popup.html -------------------------------------------------------------------------------- /src/raw-settings.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhill/uMatrix/HEAD/src/raw-settings.html -------------------------------------------------------------------------------- /src/settings.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhill/uMatrix/HEAD/src/settings.html -------------------------------------------------------------------------------- /src/user-rules.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhill/uMatrix/HEAD/src/user-rules.html -------------------------------------------------------------------------------- /tools/import-crowdin.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhill/uMatrix/HEAD/tools/import-crowdin.sh -------------------------------------------------------------------------------- /tools/make-assets.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhill/uMatrix/HEAD/tools/make-assets.sh -------------------------------------------------------------------------------- /tools/make-chromium-meta.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhill/uMatrix/HEAD/tools/make-chromium-meta.py -------------------------------------------------------------------------------- /tools/make-chromium.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhill/uMatrix/HEAD/tools/make-chromium.sh -------------------------------------------------------------------------------- /tools/make-clean.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhill/uMatrix/HEAD/tools/make-clean.sh -------------------------------------------------------------------------------- /tools/make-firefox-meta.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhill/uMatrix/HEAD/tools/make-firefox-meta.py -------------------------------------------------------------------------------- /tools/make-firefox.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhill/uMatrix/HEAD/tools/make-firefox.sh -------------------------------------------------------------------------------- /tools/make-opera-meta.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhill/uMatrix/HEAD/tools/make-opera-meta.py -------------------------------------------------------------------------------- /tools/make-opera.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhill/uMatrix/HEAD/tools/make-opera.sh --------------------------------------------------------------------------------