-
-
Notifications
You must be signed in to change notification settings - Fork 138
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
909658b
commit 0dcb99f
Showing
4 changed files
with
11 additions
and
32 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,11 +3,11 @@ | |
"[email protected]" : { | ||
"updates" : [ | ||
{ | ||
"version" : "2.0.0", | ||
"version" : "2.0.1", | ||
"update_link" : "https://github.com/ParticleCore/Iridium/raw/master/dist/Iridium.xpi", | ||
"applications" : { | ||
"gecko" : { | ||
"strict_min_version" : "100.0" | ||
"strict_min_version" : "110.0" | ||
} | ||
} | ||
} | ||
|
Binary file not shown.
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,7 +1,7 @@ | ||
{ | ||
"manifest_version": 3, | ||
"manifest_version": 2, | ||
"name": "Iridium for YouTube", | ||
"version": "2.0.0", | ||
"version": "2.0.1", | ||
"description": "YouTube with more freedom", | ||
"default_locale": "en_US", | ||
"options_ui": { | ||
|
@@ -15,7 +15,7 @@ | |
"64": "icons/64.png", | ||
"128": "icons/128.png" | ||
}, | ||
"action": { | ||
"browser_action": { | ||
"default_icon": { | ||
"16": "icons/16.png", | ||
"32": "icons/32.png", | ||
|
@@ -29,7 +29,8 @@ | |
"js/setting-data.js", | ||
"js/background-inject.js", | ||
"js/background.js" | ||
] | ||
], | ||
"persistent": true | ||
}, | ||
"content_scripts": [ | ||
{ | ||
|
@@ -46,16 +47,13 @@ | |
"storage", | ||
"webRequest", | ||
"webRequestBlocking", | ||
"webRequestFilterResponse" | ||
], | ||
"host_permissions": [ | ||
"*://.youtube.com/*", | ||
"webRequestFilterResponse", | ||
"*://www.youtube.com/*" | ||
], | ||
"browser_specific_settings": { | ||
"gecko": { | ||
"id": "[email protected]", | ||
"strict_min_version": "100.0", | ||
"strict_min_version": "110.0", | ||
"update_url": "https://github.com/ParticleCore/Iridium/raw/master/bin/update.json" | ||
} | ||
} | ||
|