-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmanifest.json
32 lines (32 loc) · 906 Bytes
/
manifest.json
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
{
"applications": {
"gecko": {
"id": "[email protected]",
"strict_min_version": "42.0"
}
},
"manifest_version": 2,
"name": "TOO MUCH CAPS",
"version": "1.4",
"description": "Makes YouTube video titles lowercase or Capitalized. Or UPPERCASE... It's your choice now.",
"icons": {
"48": "icons/toomuchcaps-48.png",
"96": "icons/toomuchcaps-96.png"
},
"content_scripts": [{
"matches": ["*://*.youtube.com/*"],
"js": ["toomuchcaps.js"],
"run_at": "document_start"
}],
"options_ui": {
"page": "options.html"
},
"browser_action": {
"default_popup": "options.html",
"default_icon": {
"48": "icons/toomuchcaps-48.png",
"96": "icons/toomuchcaps-96.png"
}
},
"permissions": ["storage","activeTab"]
}