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

manifest.json « chrome « Extensions - github.com/Anarios/return-youtube-dislike.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: c67c22c5e8cd842879c82e8e4a7a59a7645b63de (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
{
  "name": "Return YouTube Dislike",
  "description": "Returns ability to see dislikes",
  "version": "1.0.0.2",
  "manifest_version": 3,
  "background": {
    "service_worker": "return-youtube-dislike.background.js"
  },
  "icons": {
    "48": "icons/icon48.png",
   "128": "icons/icon128.png"
  },
  "host_permissions": ["*://*.youtube.com/*"],
  "action": {
    "default_popup": "popup.html"
  },
  "oauth2": {
    "client_id": "292556337651-kbmq2pduaejrol457a5s1089ut6ug0u9.apps.googleusercontent.com",
    "scopes": ["openid"]
  },
  "content_scripts": [
    {
      "matches": ["*://*.youtube.com/*"],
      "js": ["return-youtube-dislike.content-script.js"],
      "run_at": "document_start",
      "css": ["content-style.css"]
    }
  ],
  "externally_connectable": {
    "matches": ["*://*.youtube.com/*"]
  },
  "web_accessible_resources": [
    {
      "resources": ["return-youtube-dislike.script.js"],
      "matches": ["*://*.youtube.com/*"]
    }
  ]
}