From a0c72fc302a1bc662bc73b355499a75b29cd2cd3 Mon Sep 17 00:00:00 2001 From: Raymond Hill Date: Sat, 25 Aug 2018 12:01:00 -0400 Subject: [PATCH] removing unsupported firefox/legacy platform --- platform/firefox/bootstrap.js | 245 -- platform/firefox/chrome.manifest | 1 - .../firefox/css/legacy-toolbar-button.css | 46 - platform/firefox/frameModule.js | 356 -- platform/firefox/frameScript.js | 72 - .../firefox/img/browsericons/icon19-19.png | Bin 750 -> 0 bytes .../firefox/img/browsericons/icon19-off.png | Bin 777 -> 0 bytes platform/firefox/install.rdf | 45 - platform/firefox/options.xul | 9 - platform/firefox/polyfill.js | 95 - platform/firefox/vapi-background.js | 3465 ----------------- platform/firefox/vapi-client.js | 225 -- platform/firefox/vapi-common.js | 191 - platform/firefox/vapi-popup.js | 1 - tools/make-firefox-meta.py | 120 - tools/make-firefox.sh | 42 - 16 files changed, 4913 deletions(-) delete mode 100644 platform/firefox/bootstrap.js delete mode 100644 platform/firefox/chrome.manifest delete mode 100644 platform/firefox/css/legacy-toolbar-button.css delete mode 100644 platform/firefox/frameModule.js delete mode 100644 platform/firefox/frameScript.js delete mode 100644 platform/firefox/img/browsericons/icon19-19.png delete mode 100644 platform/firefox/img/browsericons/icon19-off.png delete mode 100644 platform/firefox/install.rdf delete mode 100644 platform/firefox/options.xul delete mode 100644 platform/firefox/polyfill.js delete mode 100644 platform/firefox/vapi-background.js delete mode 100644 platform/firefox/vapi-client.js delete mode 100644 platform/firefox/vapi-common.js delete mode 100644 platform/firefox/vapi-popup.js delete mode 100755 tools/make-firefox-meta.py delete mode 100755 tools/make-firefox.sh diff --git a/platform/firefox/bootstrap.js b/platform/firefox/bootstrap.js deleted file mode 100644 index 71debda..0000000 --- a/platform/firefox/bootstrap.js +++ /dev/null @@ -1,245 +0,0 @@ -/******************************************************************************* - - uMatrix - a browser extension to block requests. - Copyright (C) 2014-2017 The uMatrix/uBlock Origin authors - - 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 -*/ - -/* global ADDON_UNINSTALL, APP_SHUTDOWN */ -/* exported startup, shutdown, install, uninstall */ - -'use strict'; - -/******************************************************************************/ - -const {classes: Cc, interfaces: Ci, utils: Cu} = Components; - -// Accessing the context of the background page: -// var win = Services.appShell.hiddenDOMWindow.document.querySelector('iframe[src*=umatrix]').contentWindow; - -let windowlessBrowser = null; -let windowlessBrowserPL = null; -let bgProcess = null; -let version; -const hostName = 'umatrix'; -const restartListener = { - get messageManager() { - return Cc['@mozilla.org/parentprocessmessagemanager;1'] - .getService(Ci.nsIMessageListenerManager); - }, - - receiveMessage: function() { - shutdown(); - startup(); - } -}; - -/******************************************************************************/ - -// https://github.com/gorhill/uBlock/issues/2493 -// Fix by https://github.com/gijsk -// imported from https://github.com/gorhill/uBlock/pull/2497 - -function startup(data/*, reason*/) { - if ( data !== undefined ) { - version = data.version; - } - - // Already started? - if ( bgProcess !== null ) { - return; - } - - waitForHiddenWindow(); -} - -function createBgProcess(parentDocument) { - bgProcess = parentDocument.documentElement.appendChild( - parentDocument.createElementNS('http://www.w3.org/1999/xhtml', 'iframe') - ); - bgProcess.setAttribute( - 'src', - 'chrome://' + hostName + '/content/background.html#' + version - ); - - // https://developer.mozilla.org/en-US/docs/Mozilla/Tech/XPCOM/Reference/Interface/nsIMessageListenerManager#addMessageListener%28%29 - // "If the same listener registers twice for the same message, the - // "second registration is ignored." - restartListener.messageManager.addMessageListener( - hostName + '-restart', - restartListener - ); -} - -function getWindowlessBrowserFrame(appShell) { - windowlessBrowser = appShell.createWindowlessBrowser(true); - windowlessBrowser.QueryInterface(Ci.nsIInterfaceRequestor); - let webProgress = windowlessBrowser.getInterface(Ci.nsIWebProgress); - let XPCOMUtils = Cu.import('resource://gre/modules/XPCOMUtils.jsm', null).XPCOMUtils; - windowlessBrowserPL = { - QueryInterface: XPCOMUtils.generateQI([ - Ci.nsIWebProgressListener, - Ci.nsIWebProgressListener2, - Ci.nsISupportsWeakReference - ]), - onStateChange: function(wbp, request, stateFlags, status) { - if ( !request ) { return; } - if ( stateFlags & Ci.nsIWebProgressListener.STATE_STOP ) { - webProgress.removeProgressListener(windowlessBrowserPL); - windowlessBrowserPL = null; - createBgProcess(windowlessBrowser.document); - } - } - }; - webProgress.addProgressListener(windowlessBrowserPL, Ci.nsIWebProgress.NOTIFY_STATE_DOCUMENT); - windowlessBrowser.document.location = "data:application/vnd.mozilla.xul+xml;charset=utf-8,"; -} - -function waitForHiddenWindow() { - let appShell = Cc['@mozilla.org/appshell/appShellService;1'] - .getService(Ci.nsIAppShellService); - - let isReady = function() { - var hiddenDoc; - - try { - hiddenDoc = appShell.hiddenDOMWindow && - appShell.hiddenDOMWindow.document; - } catch (ex) { - } - - // Do not test against `loading`: it does appear `readyState` could be - // undefined if looked up too early. - if ( !hiddenDoc || hiddenDoc.readyState !== 'complete' ) { - return false; - } - - // In theory, it should be possible to create a windowless browser - // immediately, without waiting for the hidden window to have loaded - // completely. However, in practice, on Windows this seems to lead - // to a broken Firefox appearance. To avoid this, we only create the - // windowless browser here. We'll use that rather than the hidden - // window for the actual background page (windowless browsers are - // also what the webextension implementation in Firefox uses for - // background pages). - let { Services } = Cu.import('resource://gre/modules/Services.jsm', null); - if ( Services.vc.compare(Services.appinfo.platformVersion, '27') >= 0 ) { - getWindowlessBrowserFrame(appShell); - } else { - createBgProcess(hiddenDoc); - } - return true; - }; - - if ( isReady() ) { - return; - } - - // https://github.com/gorhill/uBlock/issues/749 - // Poll until the proper environment is set up -- or give up eventually. - // We poll frequently early on but relax poll delay as time pass. - - let tryDelay = 5; - let trySum = 0; - // https://trac.torproject.org/projects/tor/ticket/19438 - // Try for a longer period. - let tryMax = 600011; - let timer = Cc['@mozilla.org/timer;1'] - .createInstance(Ci.nsITimer); - - let checkLater = function() { - trySum += tryDelay; - if ( trySum >= tryMax ) { - timer = null; - return; - } - timer.init(timerObserver, tryDelay, timer.TYPE_ONE_SHOT); - tryDelay *= 2; - if ( tryDelay > 503 ) { - tryDelay = 503; - } - }; - - var timerObserver = { - observe: function() { - timer.cancel(); - if ( isReady() ) { - timer = null; - } else { - checkLater(); - } - } - }; - - checkLater(); -} - -/******************************************************************************/ - -function shutdown(data, reason) { - if ( reason === APP_SHUTDOWN ) { - return; - } - - if ( bgProcess !== null ) { - bgProcess.parentNode.removeChild(bgProcess); - bgProcess = null; - } - - if ( windowlessBrowser !== null ) { - // close() does not exist for older versions of Firefox. - if ( typeof windowlessBrowser.close === 'function' ) { - windowlessBrowser.close(); - } - windowlessBrowser = null; - windowlessBrowserPL = null; - } - - if ( data === undefined ) { - return; - } - - // Remove the restartObserver only when the extension is being disabled - restartListener.messageManager.removeMessageListener( - hostName + '-restart', - restartListener - ); -} - -/******************************************************************************/ - -function install() { - // https://bugzil.la/719376 - Cc['@mozilla.org/intl/stringbundle;1'] - .getService(Ci.nsIStringBundleService) - .flushBundles(); -} - -/******************************************************************************/ - -function uninstall(data, aReason) { - if ( aReason !== ADDON_UNINSTALL ) { - return; - } - // To cleanup vAPI.localStorage in vapi-common.js, aka - // "extensions.umatrix.*" in `about:config`. - Cu.import('resource://gre/modules/Services.jsm', null) - .Services.prefs.getBranch('extensions.' + hostName + '.') - .deleteBranch(''); -} - -/******************************************************************************/ diff --git a/platform/firefox/chrome.manifest b/platform/firefox/chrome.manifest deleted file mode 100644 index 9516057..0000000 --- a/platform/firefox/chrome.manifest +++ /dev/null @@ -1 +0,0 @@ -content umatrix ./ diff --git a/platform/firefox/css/legacy-toolbar-button.css b/platform/firefox/css/legacy-toolbar-button.css deleted file mode 100644 index a6408ee..0000000 --- a/platform/firefox/css/legacy-toolbar-button.css +++ /dev/null @@ -1,46 +0,0 @@ -#umatrix-legacy-button { - list-style-image: url('../img/browsericons/icon19-19.png'); -} -#umatrix-legacy-button.off { - list-style-image: url('../img/browsericons/icon19-off.png'); -} - -toolbar[iconsize="small"] #umatrix-legacy-button { - list-style-image: url('../img/browsericons/icon19-19.png'); -} -toolbar[iconsize="small"] #umatrix-legacy-button.off { - list-style-image: url('../img/browsericons/icon19-off.png'); -} -#umatrix-legacy-button[badge]::before { - background: #000; - color: #fff; - content: attr(badge); - font: bold 10px sans-serif; - margin-top: -2px; - padding: 0 2px; - position: fixed; -} -/* This hack required because if the before content changes it de-pops the - popup (without firing any events). So just hide it instead. Note, can't - actually *hide* it, or the same thing happens. -**/ -#umatrix-legacy-button[badge=""]::before { - padding: 0; -} - -/* Override off state when in palette */ -toolbarpaletteitem #umatrix-legacy-button.off { - list-style-image: url('../img/browsericons/icon19-12.png'); -} - -/* Override badge when in palette */ -toolbarpaletteitem #umatrix-legacy-button[badge]::before { - content: none; -} - -/* Prevent pale moon from showing the arrow underneath the button */ -/* https://github.com/chrisaljoudi/uBlock/issues/1449#issuecomment-112112761 */ -#umatrix-legacy-button .toolbarbutton-menu-dropmarker { - display: none; - -moz-box-orient: horizontal; -} diff --git a/platform/firefox/frameModule.js b/platform/firefox/frameModule.js deleted file mode 100644 index 1966960..0000000 --- a/platform/firefox/frameModule.js +++ /dev/null @@ -1,356 +0,0 @@ -/******************************************************************************* - - µBlock - a browser extension to block requests. - Copyright (C) 2014 The µBlock authors - - 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 -*/ - -/* global Components */ - -'use strict'; - -/******************************************************************************/ - -// https://github.com/gorhill/uBlock/issues/800#issuecomment-146580443 -this.EXPORTED_SYMBOLS = ['contentObserver', 'LocationChangeListener']; - -const {interfaces: Ci, utils: Cu} = Components; -const {Services} = Cu.import('resource://gre/modules/Services.jsm', null); -const {XPCOMUtils} = Cu.import('resource://gre/modules/XPCOMUtils.jsm', null); - -const hostName = Services.io.newURI(Components.stack.filename, null, null).host; - -// Cu.import('resource://gre/modules/Console.jsm'); - -/******************************************************************************/ - -const getMessageManager = function(win) { - let iface = win - .QueryInterface(Ci.nsIInterfaceRequestor) - .getInterface(Ci.nsIDocShell) - .sameTypeRootTreeItem - .QueryInterface(Ci.nsIDocShell) - .QueryInterface(Ci.nsIInterfaceRequestor); - - try { - return iface.getInterface(Ci.nsIContentFrameMessageManager); - } catch (ex) { - // This can throw. It appears `shouldLoad` can be called *after* a - // tab has been closed. For example, a case where this happens all - // the time (FF38): - // - Open twitter.com (assuming you have an account and are logged in) - // - Close twitter.com - // There will be an exception raised when `shouldLoad` is called - // to process a XMLHttpRequest with URL `https://twitter.com/i/jot` - // fired from `https://twitter.com/`, *after* the tab is closed. - // In such case, `win` is `about:blank`. - } - return null; -}; - -/******************************************************************************/ - -var contentObserver = { - classDescription: 'content-policy for ' + hostName, - classID: Components.ID('{c84283d4-9975-41b7-b1a4-f106af56b51d}'), - contractID: '@' + hostName + '/content-policy;1', - ACCEPT: Ci.nsIContentPolicy.ACCEPT, - MAIN_FRAME: Ci.nsIContentPolicy.TYPE_DOCUMENT, - contentBaseURI: 'chrome://' + hostName + '/content/js/', - cpMessageName: hostName + ':shouldLoad', - uniqueSandboxId: 1, - modernFirefox: - Services.vc.compare(Services.appinfo.platformVersion, '44') > 0 && ( - Services.appinfo.ID === '{92650c4d-4b8e-4d2a-b7eb-24ecf4f6b63a}' || - Services.appinfo.ID === '{ec8030f7-c20a-464f-9b0e-13a3a9e97384}' - ), - - get componentRegistrar() { - return Components.manager.QueryInterface(Ci.nsIComponentRegistrar); - }, - - get categoryManager() { - return Components.classes['@mozilla.org/categorymanager;1'] - .getService(Ci.nsICategoryManager); - }, - - QueryInterface: XPCOMUtils.generateQI([ - Ci.nsIFactory, - Ci.nsIObserver, - Ci.nsIContentPolicy, - Ci.nsISupportsWeakReference - ]), - - createInstance: function(outer, iid) { - if ( outer ) { - throw Components.results.NS_ERROR_NO_AGGREGATION; - } - - return this.QueryInterface(iid); - }, - - register: function() { - Services.obs.addObserver(this, 'document-element-inserted', true); - - if ( !this.modernFirefox ) { - this.componentRegistrar.registerFactory( - this.classID, - this.classDescription, - this.contractID, - this - ); - this.categoryManager.addCategoryEntry( - 'content-policy', - this.contractID, - this.contractID, - false, - true - ); - } - }, - - unregister: function() { - Services.obs.removeObserver(this, 'document-element-inserted'); - - if ( !this.modernFirefox ) { - this.componentRegistrar.unregisterFactory( - this.classID, - this - ); - this.categoryManager.deleteCategoryEntry( - 'content-policy', - this.contractID, - false - ); - } - }, - - // https://developer.mozilla.org/en-US/docs/Mozilla/Tech/XPCOM/Reference/Interface/nsIContentPolicy - // https://bugzil.la/612921 - shouldLoad: function(type, location, origin, context) { - if ( Services === undefined || !context ) { - return this.ACCEPT; - } - - if ( !location.schemeIs('http') && !location.schemeIs('https') ) { - return this.ACCEPT; - } - - var contextWindow; - if ( type === this.MAIN_FRAME ) { - contextWindow = context.contentWindow || context; - } else if ( type === this.SUB_FRAME ) { - contextWindow = context.contentWindow; - } else { - contextWindow = (context.ownerDocument || context).defaultView; - } - - // https://github.com/gorhill/uMatrix/issues/706 - if ( !contextWindow ) { - return this.ACCEPT; - } - - // The context for the toolbar popup is an iframe element here, - // so check context.top instead of context - if ( !contextWindow.top || !contextWindow.location ) { - return this.ACCEPT; - } - - let messageManager = getMessageManager(contextWindow); - if ( messageManager === null ) { - return this.ACCEPT; - } - - let details = { - rawType: type, - url: location.asciiSpec - }; - - if ( typeof messageManager.sendRpcMessage === 'function' ) { - // https://bugzil.la/1092216 - messageManager.sendRpcMessage(this.cpMessageName, details); - } else { - // Compatibility for older versions - messageManager.sendSyncMessage(this.cpMessageName, details); - } - - return this.ACCEPT; - }, - - initContentScripts: function(win, sandbox) { - let messager = getMessageManager(win); - let sandboxId = hostName + ':sb:' + this.uniqueSandboxId++; - - if ( sandbox ) { - let sandboxName = [ - win.location.href.slice(0, 100), - win.document.title.slice(0, 100) - ].join(' | '); - - // https://github.com/gorhill/uMatrix/issues/325 - // "Pass sameZoneAs to sandbox constructor to make GCs cheaper" - sandbox = Cu.Sandbox([win], { - sameZoneAs: win.top, - sandboxName: sandboxId + '[' + sandboxName + ']', - sandboxPrototype: win, - wantComponents: false, - wantXHRConstructor: false - }); - - sandbox.injectScript = function(script) { - Services.scriptloader.loadSubScript(script, sandbox); - }; - } - else { - sandbox = win; - } - - sandbox._sandboxId_ = sandboxId; - sandbox.sendAsyncMessage = messager.sendAsyncMessage; - - sandbox.addMessageListener = function(callback) { - if ( sandbox._messageListener_ ) { - sandbox.removeMessageListener(); - } - - sandbox._messageListener_ = function(message) { - callback(message.data); - }; - - messager.addMessageListener( - sandbox._sandboxId_, - sandbox._messageListener_ - ); - messager.addMessageListener( - hostName + ':broadcast', - sandbox._messageListener_ - ); - }; - - sandbox.removeMessageListener = function() { - try { - messager.removeMessageListener( - sandbox._sandboxId_, - sandbox._messageListener_ - ); - messager.removeMessageListener( - hostName + ':broadcast', - sandbox._messageListener_ - ); - } catch (ex) { - // It throws sometimes, mostly when the popup closes - } - - sandbox._messageListener_ = null; - }; - - return sandbox; - }, - - observe: function(doc) { - let win = doc.defaultView; - if ( !win ) { - return; - } - - let loc = win.location; - if ( !loc ) { - return; - } - - // https://github.com/gorhill/uBlock/issues/260 - // TODO: We may have to skip more types, for now let's be - // conservative, i.e. let's not test against `text/html`. - if ( doc.contentType.lastIndexOf('image/', 0) === 0 ) { - return; - } - - if ( loc.protocol !== 'http:' && loc.protocol !== 'https:' && loc.protocol !== 'file:' ) { - if ( loc.protocol === 'chrome:' && loc.host === hostName ) { - this.initContentScripts(win); - } - - // What about data: and about:blank? - return; - } - - let lss = Services.scriptloader.loadSubScript; - let sandbox = this.initContentScripts(win, true); - - // Can throw with attempts at injecting into non-HTML document. - // Example: https://a.pomf.se/avonjf.webm - try { - lss(this.contentBaseURI + 'vapi-client.js', sandbox); - lss(this.contentBaseURI + 'contentscript-start.js', sandbox); - } catch (ex) { - return; // don't further try to inject anything - } - - let docReady = (e) => { - let doc = e.target; - doc.removeEventListener(e.type, docReady, true); - lss(this.contentBaseURI + 'contentscript-end.js', sandbox); - }; - - if ( doc.readyState === 'loading') { - doc.addEventListener('DOMContentLoaded', docReady, true); - } else { - docReady({ target: doc, type: 'DOMContentLoaded' }); - } - } -}; - -/******************************************************************************/ - -const locationChangedMessageName = hostName + ':locationChanged'; - -var LocationChangeListener = function(docShell) { - if ( !docShell ) { - return; - } - - var requestor = docShell.QueryInterface(Ci.nsIInterfaceRequestor); - var ds = requestor.getInterface(Ci.nsIWebProgress); - var mm = requestor.getInterface(Ci.nsIContentFrameMessageManager); - - if ( ds && mm && typeof mm.sendAsyncMessage === 'function' ) { - this.docShell = ds; - this.messageManager = mm; - ds.addProgressListener(this, Ci.nsIWebProgress.NOTIFY_LOCATION); - } -}; - -LocationChangeListener.prototype.QueryInterface = XPCOMUtils.generateQI([ - 'nsIWebProgressListener', - 'nsISupportsWeakReference' -]); - -LocationChangeListener.prototype.onLocationChange = function(webProgress, request, location, flags) { - if ( !webProgress.isTopLevel ) { - return; - } - this.messageManager.sendAsyncMessage(locationChangedMessageName, { - url: location.asciiSpec, - flags: flags, - }); -}; - -/******************************************************************************/ - -contentObserver.register(); - -/******************************************************************************/ diff --git a/platform/firefox/frameScript.js b/platform/firefox/frameScript.js deleted file mode 100644 index d2f9f70..0000000 --- a/platform/firefox/frameScript.js +++ /dev/null @@ -1,72 +0,0 @@ -/******************************************************************************* - - µBlock - a browser extension to block requests. - Copyright (C) 2014 The µBlock authors - - 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 -*/ - -/******************************************************************************/ - -var locationChangeListener; // Keep alive while frameScript is alive - -(function() { - -'use strict'; - -/******************************************************************************/ - -let {contentObserver, LocationChangeListener} = Components.utils.import( - Components.stack.filename.replace('Script', 'Module'), - null -); - -let injectContentScripts = function(win) { - if ( !win || !win.document ) { - return; - } - - contentObserver.observe(win.document); - - if ( win.frames && win.frames.length ) { - let i = win.frames.length; - while ( i-- ) { - injectContentScripts(win.frames[i]); - } - } -}; - -let onLoadCompleted = function() { - removeMessageListener('umatrix-load-completed', onLoadCompleted); - injectContentScripts(content); -}; - -addMessageListener('umatrix-load-completed', onLoadCompleted); - -if ( docShell ) { - let Ci = Components.interfaces; - let wp = docShell.QueryInterface(Ci.nsIInterfaceRequestor).getInterface(Ci.nsIWebProgress); - let dw = wp.DOMWindow; - if ( dw === dw.top ) { - locationChangeListener = new LocationChangeListener(docShell); - } -} - -/******************************************************************************/ - -})(); - -/******************************************************************************/ diff --git a/platform/firefox/img/browsericons/icon19-19.png b/platform/firefox/img/browsericons/icon19-19.png deleted file mode 100644 index 500242b619c85a757c413bdf22802ef72154a998..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 750 zcmVe zSad^gZEa<4bO1wgWnpw>WFU8GbZ8()Nlj2!fese{00LG?L_t(I%Y~H7ZsRZvMUO1X zucT=Z^bvH?f9luH-*geQ$R)wt{GChyVvK05d47JzT6;w+gpgyDQhA1{Nl_HU82=$tO7Z^wj`yCXX_)7k z$H&Kv&N-J0B+3a{qMv6rjw9>!nxZJEs)`W8f{HOF)0w7;vMlpIrPL4N5CZc&qm-iS zy2Z>ygb+erLMs0C^~H9(%`r(LvRbXUzrQEO$bP>^DTTE*>&Sb5HKT`z2SNy08cHdg zb4cI!oKB}4d^{fc{{E(ITkh`esOx&6sWg&AGx^TvGh&RPX_}m{-|v~GiKb~N%Q90; z&6HBKZF_~R?|WpLCi=doC<+dT1I{_T_pDYccDr3hc3I3?oBhc*O%oy_R8@twmV{D7 z5E1ISzB-{8BUM#pIV96sQ^Xh~=ehF=(w9=X81Km)FyE9pap07=}#ma5ylIBR4lU zc>xKXb1oxEZ(zDj;0IaTwv6M5wU(!+r~HOBP4nwJc8SP2hlpT|LC)th^E_W|tn0db gyIsTmS$7 diff --git a/platform/firefox/img/browsericons/icon19-off.png b/platform/firefox/img/browsericons/icon19-off.png deleted file mode 100644 index 036a7a3c9946507297825bf5f39885fd5c4781e1..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 777 zcmV+k1NQuhP)~ z6c8eb8ar)wySwI4jAt~OI@#rVey{3P(c9Zw=Nut~5JD-%huLh_G>uYFQsGvu-R;0US6;(bpM|qglMh*&H#WI zhCxbsdU}dRQ%YZ7U)#1tKgT|CD;Q(gt@r-Vga{#0%ID|jx~}6mR!VvA(N(k|iXv3Y zIe&kD7hTtBt#PLpi$&8k`}_NKU5~DGU5C4Btwjl(a{v%=98agywr#c6*Voq}gfvYj zlZkUKNfIRa`#$m9zP`T1YPGV~lHUOU%jGi5GCYz02CmvK0noI(nL}?c00000NkvXX Hu0mjf(|BK& diff --git a/platform/firefox/install.rdf b/platform/firefox/install.rdf deleted file mode 100644 index 44455a9..0000000 --- a/platform/firefox/install.rdf +++ /dev/null @@ -1,45 +0,0 @@ - - - - uMatrix@raymondhill.net - {version} - {name} - {description} - {homepage} - {author} - Deathamns - Alex Vallat - 2 - true - true - 2 -{localized} - - - - - {{ec8030f7-c20a-464f-9b0e-13a3a9e97384}} - 24.0 - 56.* - - - - - - - {{92650c4d-4b8e-4d2a-b7eb-24ecf4f6b63a}} - 2.24 - * - - - - - - - {{8de7fcbb-c55c-4fbe-bfc5-fc555c87dbc4}} - 26.0 - 27.* - - - - diff --git a/platform/firefox/options.xul b/platform/firefox/options.xul deleted file mode 100644 index aeba83a..0000000 --- a/platform/firefox/options.xul +++ /dev/null @@ -1,9 +0,0 @@ - - - - -