-
Notifications
You must be signed in to change notification settings - Fork 100
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Patch amazon to get full twitch experience
- Loading branch information
Showing
19 changed files
with
3,674 additions
and
1,347 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,46 +1,29 @@ | ||
{ | ||
"name": "TwitchNoSub", | ||
"version": "0.5.1", | ||
"version": "0.6", | ||
"description": "Show sub only VOD on Twitch", | ||
"manifest_version": 3, | ||
"icons": { | ||
"128": "assets/icons/icon.png" | ||
}, | ||
"action": { | ||
"default_popup": "src/content/watching_list.html" | ||
}, | ||
"web_accessible_resources": [ | ||
{ | ||
"resources": [ "src/patched-amazon.js" ], | ||
"matches": [ "https://www.twitch.tv/*" ] | ||
} | ||
], | ||
"background": { | ||
"service_worker": "src/background.js" | ||
}, | ||
"host_permissions": [ | ||
"https://www.twitch.tv/*", | ||
"https://usher.ttvnw.net/*" | ||
"https://static.twitchcdn.net/assets/*" | ||
], | ||
"permissions": [ | ||
"storage", | ||
"activeTab", | ||
"tabs", | ||
"webRequest", | ||
"webNavigation" | ||
], | ||
"content_scripts": [ | ||
{ | ||
"run_at": "document_start", | ||
"matches": [ | ||
"https://www.twitch.tv/*" | ||
], | ||
"js": [ | ||
"src/scripts/video-7.20.2.min.js", | ||
"src/scripts/silvermine-videojs-quality-selector.min.js", | ||
"src/chat.js", | ||
"src/thumbnails.js", | ||
"src/app.js" | ||
], | ||
"css": [ | ||
"src/style/video-js-7.20.2.min.css", | ||
"src/style/custom.css", | ||
"src/style/chat.css" | ||
] | ||
} | ||
"webNavigation", | ||
"declarativeNetRequest" | ||
] | ||
} |
Oops, something went wrong.
54f0428
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is Brilliant! Thank you for your work.