diff --git a/Makefile b/Makefile index 5530482..4f76686 100644 --- a/Makefile +++ b/Makefile @@ -15,6 +15,7 @@ install: uninstall cp ./*.css $(PREFIX)/share/webext/i2ppb@eyedeekay.github.io/ cp ./*.md $(PREFIX)/share/webext/i2ppb@eyedeekay.github.io/ cp ./*.xpi $(PREFIX)/share/webext/i2ppb@eyedeekay.github.io/ + cp ./*.png $(PREFIX)/share/webext/i2ppb@eyedeekay.github.io/ cp ./manifest.json $(PREFIX)/share/webext/i2ppb@eyedeekay.github.io/ cp ./LICENSE $(PREFIX)/share/webext/i2ppb@eyedeekay.github.io/ ln -s $(PREFIX)/share/webext/i2ppb@eyedeekay.github.io \ diff --git a/debian/rules b/debian/rules index 12647cd..123285b 100755 --- a/debian/rules +++ b/debian/rules @@ -16,6 +16,7 @@ override_dh_auto_install: cp ./*.css $$(pwd)/debian/i2psetproxy.js/usr/share/webext/i2ppb@eyedeekay.github.io/ cp ./*.md $$(pwd)/debian/i2psetproxy.js/usr/share/webext/i2ppb@eyedeekay.github.io/ cp ./*.xpi $$(pwd)/debian/i2psetproxy.js/usr/share/webext/i2ppb@eyedeekay.github.io/ + cp ./*.png $$(pwd)/debian/i2psetproxy.js/usr/share/webext/i2ppb@eyedeekay.github.io/ cp ./manifest.json $$(pwd)/debian/i2psetproxy.js/usr/share/webext/i2ppb@eyedeekay.github.io/ cp ./LICENSE $$(pwd)/debian/i2psetproxy.js/usr/share/webext/i2ppb@eyedeekay.github.io/ ln -sf $$(pwd)/debian/i2psetproxy.js/usr/share/webext/i2ppb@eyedeekay.github.io \ diff --git a/home.css b/home.css index d279a5c..9fdf1f3 100644 --- a/home.css +++ b/home.css @@ -203,8 +203,8 @@ li { border-radius: 2px; box-shadow: inset 0 0 0 1px #fff,0 0 1px #ccc } -#controlExplain, #applicationExplain, +#controlExplain, #linksExplain { min-height: 5rem; padding: .5rem; diff --git a/manifest.json b/manifest.json index 4558c71..9bd5a77 100644 --- a/manifest.json +++ b/manifest.json @@ -23,8 +23,8 @@ ], "manifest_version": 2, "name": "__MSG_extensionName__", - "version": "0.54", - "version_name": "0.54", + "version": "0.55", + "version_name": "0.55", "description": "__MSG_extensionDescription__", "homepage_url": "https://github.com/eyedeekay/i2psetproxy.js", "icons": { diff --git a/scrub.js b/scrub.js index 1cc4f69..8945a94 100644 --- a/scrub.js +++ b/scrub.js @@ -356,6 +356,9 @@ var contextSetup = async function(requestDetails) { if (requestDetails == undefined) { return requestDetails; } + if (extensionHost(requestDetails.url)) { + return requestDetails; + } if (requestDetails.tabId > 0) { if (proxyHost(requestDetails.url)) { setcookie = browser.cookies.set({ @@ -368,9 +371,6 @@ var contextSetup = async function(requestDetails) { } console.log("(isolate)Request Details", requestDetails); var tab = tabGet(requestDetails.tabId); - if (extensionHost(requestDetails.url)) { - return requestDetails; - } if (i2pHost(requestDetails.url)) { var setcookie = browser.cookies.set({ firstPartyDomain: i2pHostName(requestDetails.url),