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

manifest.json « firefox « Extensions - github.com/Anarios/return-youtube-dislike.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 59fa79effb78cb83611a3b9d7a219567c759b9df (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
{
  "name": "Return Youtube Dislike",
  "description": "Returns ability to see dislikes",
  "version": "0.0.0.9",
  "manifest_version": 2,
  "background": {
    "scripts": ["return-youtube-dislike.background.js"]
  },
  "icons": {
    "48": "icons/icon48.png",
   "128": "icons/icon128.png"
  },
  "permissions": ["activeTab", "*://*.youtube.com/*"],
  "browser_action": {
    "default_popup": "popup.html"
  },
  "content_scripts": [
    {
      "matches": ["*://*.youtube.com/*"],
      "js": ["content-script.js"],
      "run_at": "document_idle",
      "css": ["content-style.css"]
    }
  ]

}