1
0
mirror of https://github.com/kkapsner/CanvasBlocker synced 2024-12-22 21:00:23 +01:00

Do not insert content script in about:blank

Fixes #165
This commit is contained in:
kkapsner 2017-12-15 20:07:34 +01:00
parent 97ab13e7b4
commit de5ac1f6d4
2 changed files with 8 additions and 2 deletions

View File

@ -1,7 +1,7 @@
{ {
"name": "CanvasBlocker", "name": "CanvasBlocker",
"description": "__MSG_addon_description__", "description": "__MSG_addon_description__",
"version": "0.4.3b-Development", "version": "0.4.3c-Development",
"icons": { "icons": {
"48": "icons/icon.svg", "48": "icons/icon.svg",
"96": "icons/icon.svg" "96": "icons/icon.svg"
@ -19,7 +19,6 @@
}, },
"content_scripts": [{ "content_scripts": [{
"matches": ["<all_urls>"], "matches": ["<all_urls>"],
"match_about_blank": true,
"all_frames": true, "all_frames": true,
"run_at": "document_start", "run_at": "document_start",
"js": [ "js": [

View File

@ -1,3 +1,10 @@
Version 0.4.3c:
known issues:
- force setting loadings may result in non working plugins or not opening direct image links. Use 0.4.3a instead or wait for Firefox 59 which provides the required API to solve this issue once and for all
fixes:
- display of about:blank broken in Waterfox
Version 0.4.3b: Version 0.4.3b:
known issues: known issues:
- force setting loadings may result in non working plugins or not opening direct image links. Use 0.4.3a instead or wait for Firefox 59 which provides the required API to solve this issue once and for all - force setting loadings may result in non working plugins or not opening direct image links. Use 0.4.3a instead or wait for Firefox 59 which provides the required API to solve this issue once and for all