Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/Anarios/return-youtube-dislike.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'Extensions/combined/dist/chrome/manifest.json')
-rw-r--r--Extensions/combined/dist/chrome/manifest.json45
1 files changed, 0 insertions, 45 deletions
diff --git a/Extensions/combined/dist/chrome/manifest.json b/Extensions/combined/dist/chrome/manifest.json
deleted file mode 100644
index d1cf586..0000000
--- a/Extensions/combined/dist/chrome/manifest.json
+++ /dev/null
@@ -1,45 +0,0 @@
-{
- "name": "Return YouTube Dislike",
- "description": "Returns ability to see dislikes",
- "version": "2.0.0.3",
- "manifest_version": 3,
- "background": {
- "service_worker": "ryd.background.js"
- },
- "icons": {
- "48": "icons/icon48.png",
- "128": "icons/icon128.png"
- },
- "host_permissions": ["*://*.youtube.com/*"],
- "permissions": [
- "storage"
- ],
- "action": {
- "default_popup": "popup.html"
- },
- "content_scripts": [
- {
- "matches": [
- "*://youtube.com/*",
- "*://www.youtube.com/*",
- "*://m.youtube.com/*"
- ],
- "exclude_matches": ["*://*.music.youtube.com/*"],
- "js": ["bundled-content-script.js"],
- "css": ["content-style.css"]
- },
- {
- "matches": ["*://*.returnyoutubedislike.com/debug","http://localhost/debug"],
- "js": ["debug.js"]
- }
- ],
- "externally_connectable": {
- "matches": ["*://*.youtube.com/*"]
- },
- "web_accessible_resources": [
- {
- "resources": ["ryd.script.js"],
- "matches": ["*://*.youtube.com/*"]
- }
- ]
-}