From 01b76877fbb465e8cab6ba47f2b4163b9106842b Mon Sep 17 00:00:00 2001 From: TheBrokenRail Date: Sat, 19 Mar 2022 00:03:40 -0400 Subject: [PATCH] Add Ad-Block Notice --- .gitignore | 2 ++ README.md | 2 +- manifest.json | 21 --------------------- src/manifest.json | 2 +- 4 files changed, 4 insertions(+), 23 deletions(-) create mode 100644 .gitignore delete mode 100644 manifest.json mode change 100755 => 100644 src/manifest.json diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..13cbc57 --- /dev/null +++ b/.gitignore @@ -0,0 +1,2 @@ +*.xpi +*.zip diff --git a/README.md b/README.md index e74b777..915dfea 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,2 @@ # Force High-Resolution DisneyNOW -This browser extension forces DisneyNOW to use their higher-resolution video stream by imitating the Android app. +This browser extension forces DisneyNOW to use their higher-resolution video stream by imitating the Android app. (It also blocks DisneyNOW ads.) diff --git a/manifest.json b/manifest.json deleted file mode 100644 index 51c711d..0000000 --- a/manifest.json +++ /dev/null @@ -1,21 +0,0 @@ -{ - "description": "This browser extension forces DisneyNOW to use their higher-resolution video stream by imitating the Android app.", - "manifest_version": 2, - "name": "Force High-Resolution DisneyNOW", - "version": "1.0", - "content_scripts": [ - { - "matches": ["*://disneynow.com/*"], - "js": ["content.js"], - "run_at": "document_end" - } - ], - "web_accessible_resources": [ - "page.js" - ], - "browser_specific_settings": { - "gecko": { - "id": "high-res-disneynow@thebrokenrail.com" - } - } -} diff --git a/src/manifest.json b/src/manifest.json old mode 100755 new mode 100644 index 14f18cf..7447cc2 --- a/src/manifest.json +++ b/src/manifest.json @@ -1,5 +1,5 @@ { - "description": "This extension forces DisneyNOW to use their higher-resolution HLS video stream instead of their low-resolution DASH video stream.", + "description": "This browser extension forces DisneyNOW to use their higher-resolution video stream by imitating the Android app. (It also blocks DisneyNOW ads.)", "manifest_version": 2, "name": "Force High-Resolution DisneyNOW", "version": "1.0",