├── .gitignore ├── .gitmodules ├── LICENSE ├── Makefile ├── README.md ├── chrome ├── NativeMessagingHosts │ └── qvm_open_in_vm.json ├── common ├── cooilipombfggahablhdfembkajifpbi.json └── manifest.json ├── common ├── css │ ├── common.css │ ├── firewall.css │ ├── req_popup.css │ ├── settings.css │ └── welcome.css ├── html │ ├── firewall.html │ ├── req_popup.html │ ├── settings.html │ └── welcome.html ├── js │ ├── backend │ │ ├── core │ │ │ ├── native.js │ │ │ ├── settings.js │ │ │ ├── whitelist.js │ │ │ └── whitelist_entries.js │ │ ├── main.js │ │ ├── menu.js │ │ ├── messaging │ │ │ ├── messaging.js │ │ │ ├── settingsML.js │ │ │ ├── tabsML.js │ │ │ └── whitelistML.js │ │ ├── net_utils.js │ │ ├── req_handler.js │ │ └── tabs.js │ └── frontend │ │ ├── firewall.js │ │ ├── req_popup.js │ │ └── settings │ │ ├── init.js │ │ ├── main.js │ │ ├── messaging.js │ │ ├── settings.js │ │ ├── whitelist.js │ │ └── whitelist_entries.js ├── logo.png ├── logo_disabled.png ├── qvm-open-in-vm-we.py └── screenshots │ ├── default_action.png │ ├── entry_type │ ├── exact_match.png │ ├── regexp.png │ └── url.png │ ├── menus.png │ ├── popup.png │ └── settings.png ├── firefox ├── common ├── manifest.json └── native-messaging-hosts │ └── qvm_open_in_vm.json └── packages ├── chrome-v3.0.1_beta.crx ├── firefox-v3.0.1_beta.xpi └── zip └── exclude.lst /.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | *.zip -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raffaeleflorio/qubes-url-redirector/HEAD/.gitmodules -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raffaeleflorio/qubes-url-redirector/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raffaeleflorio/qubes-url-redirector/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raffaeleflorio/qubes-url-redirector/HEAD/README.md -------------------------------------------------------------------------------- /chrome/NativeMessagingHosts/qvm_open_in_vm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raffaeleflorio/qubes-url-redirector/HEAD/chrome/NativeMessagingHosts/qvm_open_in_vm.json -------------------------------------------------------------------------------- /chrome/common: -------------------------------------------------------------------------------- 1 | ../common/ -------------------------------------------------------------------------------- /chrome/cooilipombfggahablhdfembkajifpbi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raffaeleflorio/qubes-url-redirector/HEAD/chrome/cooilipombfggahablhdfembkajifpbi.json -------------------------------------------------------------------------------- /chrome/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raffaeleflorio/qubes-url-redirector/HEAD/chrome/manifest.json -------------------------------------------------------------------------------- /common/css/common.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raffaeleflorio/qubes-url-redirector/HEAD/common/css/common.css -------------------------------------------------------------------------------- /common/css/firewall.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raffaeleflorio/qubes-url-redirector/HEAD/common/css/firewall.css -------------------------------------------------------------------------------- /common/css/req_popup.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raffaeleflorio/qubes-url-redirector/HEAD/common/css/req_popup.css -------------------------------------------------------------------------------- /common/css/settings.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raffaeleflorio/qubes-url-redirector/HEAD/common/css/settings.css -------------------------------------------------------------------------------- /common/css/welcome.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raffaeleflorio/qubes-url-redirector/HEAD/common/css/welcome.css -------------------------------------------------------------------------------- /common/html/firewall.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raffaeleflorio/qubes-url-redirector/HEAD/common/html/firewall.html -------------------------------------------------------------------------------- /common/html/req_popup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raffaeleflorio/qubes-url-redirector/HEAD/common/html/req_popup.html -------------------------------------------------------------------------------- /common/html/settings.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raffaeleflorio/qubes-url-redirector/HEAD/common/html/settings.html -------------------------------------------------------------------------------- /common/html/welcome.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raffaeleflorio/qubes-url-redirector/HEAD/common/html/welcome.html -------------------------------------------------------------------------------- /common/js/backend/core/native.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raffaeleflorio/qubes-url-redirector/HEAD/common/js/backend/core/native.js -------------------------------------------------------------------------------- /common/js/backend/core/settings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raffaeleflorio/qubes-url-redirector/HEAD/common/js/backend/core/settings.js -------------------------------------------------------------------------------- /common/js/backend/core/whitelist.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raffaeleflorio/qubes-url-redirector/HEAD/common/js/backend/core/whitelist.js -------------------------------------------------------------------------------- /common/js/backend/core/whitelist_entries.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raffaeleflorio/qubes-url-redirector/HEAD/common/js/backend/core/whitelist_entries.js -------------------------------------------------------------------------------- /common/js/backend/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raffaeleflorio/qubes-url-redirector/HEAD/common/js/backend/main.js -------------------------------------------------------------------------------- /common/js/backend/menu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raffaeleflorio/qubes-url-redirector/HEAD/common/js/backend/menu.js -------------------------------------------------------------------------------- /common/js/backend/messaging/messaging.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raffaeleflorio/qubes-url-redirector/HEAD/common/js/backend/messaging/messaging.js -------------------------------------------------------------------------------- /common/js/backend/messaging/settingsML.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raffaeleflorio/qubes-url-redirector/HEAD/common/js/backend/messaging/settingsML.js -------------------------------------------------------------------------------- /common/js/backend/messaging/tabsML.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raffaeleflorio/qubes-url-redirector/HEAD/common/js/backend/messaging/tabsML.js -------------------------------------------------------------------------------- /common/js/backend/messaging/whitelistML.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raffaeleflorio/qubes-url-redirector/HEAD/common/js/backend/messaging/whitelistML.js -------------------------------------------------------------------------------- /common/js/backend/net_utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raffaeleflorio/qubes-url-redirector/HEAD/common/js/backend/net_utils.js -------------------------------------------------------------------------------- /common/js/backend/req_handler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raffaeleflorio/qubes-url-redirector/HEAD/common/js/backend/req_handler.js -------------------------------------------------------------------------------- /common/js/backend/tabs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raffaeleflorio/qubes-url-redirector/HEAD/common/js/backend/tabs.js -------------------------------------------------------------------------------- /common/js/frontend/firewall.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raffaeleflorio/qubes-url-redirector/HEAD/common/js/frontend/firewall.js -------------------------------------------------------------------------------- /common/js/frontend/req_popup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raffaeleflorio/qubes-url-redirector/HEAD/common/js/frontend/req_popup.js -------------------------------------------------------------------------------- /common/js/frontend/settings/init.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raffaeleflorio/qubes-url-redirector/HEAD/common/js/frontend/settings/init.js -------------------------------------------------------------------------------- /common/js/frontend/settings/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raffaeleflorio/qubes-url-redirector/HEAD/common/js/frontend/settings/main.js -------------------------------------------------------------------------------- /common/js/frontend/settings/messaging.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raffaeleflorio/qubes-url-redirector/HEAD/common/js/frontend/settings/messaging.js -------------------------------------------------------------------------------- /common/js/frontend/settings/settings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raffaeleflorio/qubes-url-redirector/HEAD/common/js/frontend/settings/settings.js -------------------------------------------------------------------------------- /common/js/frontend/settings/whitelist.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raffaeleflorio/qubes-url-redirector/HEAD/common/js/frontend/settings/whitelist.js -------------------------------------------------------------------------------- /common/js/frontend/settings/whitelist_entries.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raffaeleflorio/qubes-url-redirector/HEAD/common/js/frontend/settings/whitelist_entries.js -------------------------------------------------------------------------------- /common/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raffaeleflorio/qubes-url-redirector/HEAD/common/logo.png -------------------------------------------------------------------------------- /common/logo_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raffaeleflorio/qubes-url-redirector/HEAD/common/logo_disabled.png -------------------------------------------------------------------------------- /common/qvm-open-in-vm-we.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raffaeleflorio/qubes-url-redirector/HEAD/common/qvm-open-in-vm-we.py -------------------------------------------------------------------------------- /common/screenshots/default_action.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raffaeleflorio/qubes-url-redirector/HEAD/common/screenshots/default_action.png -------------------------------------------------------------------------------- /common/screenshots/entry_type/exact_match.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raffaeleflorio/qubes-url-redirector/HEAD/common/screenshots/entry_type/exact_match.png -------------------------------------------------------------------------------- /common/screenshots/entry_type/regexp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raffaeleflorio/qubes-url-redirector/HEAD/common/screenshots/entry_type/regexp.png -------------------------------------------------------------------------------- /common/screenshots/entry_type/url.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raffaeleflorio/qubes-url-redirector/HEAD/common/screenshots/entry_type/url.png -------------------------------------------------------------------------------- /common/screenshots/menus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raffaeleflorio/qubes-url-redirector/HEAD/common/screenshots/menus.png -------------------------------------------------------------------------------- /common/screenshots/popup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raffaeleflorio/qubes-url-redirector/HEAD/common/screenshots/popup.png -------------------------------------------------------------------------------- /common/screenshots/settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raffaeleflorio/qubes-url-redirector/HEAD/common/screenshots/settings.png -------------------------------------------------------------------------------- /firefox/common: -------------------------------------------------------------------------------- 1 | ../common/ -------------------------------------------------------------------------------- /firefox/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raffaeleflorio/qubes-url-redirector/HEAD/firefox/manifest.json -------------------------------------------------------------------------------- /firefox/native-messaging-hosts/qvm_open_in_vm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raffaeleflorio/qubes-url-redirector/HEAD/firefox/native-messaging-hosts/qvm_open_in_vm.json -------------------------------------------------------------------------------- /packages/chrome-v3.0.1_beta.crx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raffaeleflorio/qubes-url-redirector/HEAD/packages/chrome-v3.0.1_beta.crx -------------------------------------------------------------------------------- /packages/firefox-v3.0.1_beta.xpi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raffaeleflorio/qubes-url-redirector/HEAD/packages/firefox-v3.0.1_beta.xpi -------------------------------------------------------------------------------- /packages/zip/exclude.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raffaeleflorio/qubes-url-redirector/HEAD/packages/zip/exclude.lst --------------------------------------------------------------------------------