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

manifest-chrome.json « combined « Extensions - github.com/Anarios/return-youtube-dislike.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 10c83e9308fb85de1b8cf171911eb86b401d3a2d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
{
  "name": "Return YouTube Dislike",
  "description": "Returns ability to see dislikes",
  "version": "2.1.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"]
    }
  ],
  "externally_connectable": {
    "matches": ["*://*.youtube.com/*"]
  },
  "web_accessible_resources": [
    {
      "resources": ["ryd.script.js"],
      "matches": ["*://*.youtube.com/*"]
    }
  ]
}