From f2d7d32d1e5191630fdb2bb769c63eb5fbd80529 Mon Sep 17 00:00:00 2001 From: gorhill Date: Fri, 10 Nov 2017 10:56:55 -0500 Subject: [PATCH] remove unused legacy code from HTTPSB --- platform/chromium/manifest.json | 30 ---------------- src/background.html | 1 - src/js/commands.js | 63 --------------------------------- 3 files changed, 94 deletions(-) delete mode 100644 src/js/commands.js diff --git a/platform/chromium/manifest.json b/platform/chromium/manifest.json index 2102a9d..3f6750c 100644 --- a/platform/chromium/manifest.json +++ b/platform/chromium/manifest.json @@ -19,36 +19,6 @@ "background": { "page": "background.html" }, - "commands": { - "revert-all": { - "description": "__MSG_commandRevertAll__", - "suggested_key": { - "default": "Alt+Q", - "mac": "Command+Shift+Q" - } - }, - "whitelist-all": { - "description": "__MSG_commandWhitelistAll__", - "suggested_key": { - "default": "Alt+A", - "mac": "Command+Shift+A" - } - }, - "whitelist-page-domain": { - "description": "__MSG_commandWhitelistPageDomain__", - "suggested_key": { - "default": "Alt+W", - "mac": "Command+Shift+W" - } - }, - "open-dashboard": { - "description": "__MSG_commandOpenDashboard__", - "suggested_key": { - "default": "Alt+S", - "mac": "Command+Shift+S" - } - } - }, "content_scripts": [ { "matches": ["http://*/*", "https://*/*"], diff --git a/src/background.html b/src/background.html index 55154e5..9808e31 100644 --- a/src/background.html +++ b/src/background.html @@ -31,6 +31,5 @@ - diff --git a/src/js/commands.js b/src/js/commands.js deleted file mode 100644 index aa84182..0000000 --- a/src/js/commands.js +++ /dev/null @@ -1,63 +0,0 @@ -/******************************************************************************* - - µMatrix - a Chromium browser extension to black/white list requests. - Copyright (C) 2014 Contributors to HTTP Switchboard - - This program is free software: you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation, either version 3 of the License, or - (at your option) any later version. - - This program is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a copy of the GNU General Public License - along with this program. If not, see {http://www.gnu.org/licenses/}. - - Home: https://github.com/gorhill/uMatrix -*/ - -/******************************************************************************/ - -(function() { - -/******************************************************************************/ - -var whitelistAll = function(tabs) { - if ( tabs.length === 0 ) { - return; - } - var tab = tabs[0]; - if ( !tab.url ) { - return; - } - µMatrix.autoWhitelistAllTemporarily(tab.url); -}; - -/******************************************************************************/ - -var onCommand = function(command) { - switch ( command ) { - case 'revert-all': - µMatrix.revertAllRules(); - break; - case 'whitelist-all': - vAPI.tabs.get(null, whitelistAll); - break; - case 'open-dashboard': - µMatrix.utils.gotoExtensionURL('dashboard.html'); - break; - default: - break; - } -}; - -/******************************************************************************/ - -// chrome.commands.onCommand.addListener(onCommand); - -/******************************************************************************/ - -})();