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

manifest-firefox.json « combined « Extensions - github.com/Anarios/return-youtube-dislike.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: f304c6a166f63541e6b5c444129d5c6ab080f51c (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
{
  "name": "__MSG_extensionName__",
  "description": "__MSG_extensionDesc__",
  "default_locale": "en",
  "version": "3.0.0.0",
  "manifest_version": 2,
  "background": {
    "scripts": ["ryd.background.js"]
  },
  "icons": {
    "48": "icons/icon48.png",
    "128": "icons/icon128.png"
  },
  "permissions": [
    "activeTab",
    "*://*.youtube.com/*",
    "storage",
    "*://returnyoutubedislikeapi.com/*"
  ],
  "browser_action": {
    "default_popup": "popup.html"
  },
  "content_scripts": [
    {
      "matches": ["*://*.youtube.com/*"],
      "exclude_matches": ["*://*.music.youtube.com/*"],
      "run_at": "document_idle",
      "css": ["content-style.css"],
      "js": ["ryd.content-script.js"]
    }
  ]
  // uncomment this section for local storage to work in firefox locally
    ,
    "browser_specific_settings": {
      "gecko": {
        "id": "addon@example.com",
        "strict_min_version": "42.0"
      }
    }
}