-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmanifest.json
More file actions
39 lines (32 loc) · 843 Bytes
/
Copy pathmanifest.json
File metadata and controls
39 lines (32 loc) · 843 Bytes
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
{
"manifest_version": 2,
"name": "Percent Scrollbar",
"version": "0.2.0",
"description": "Replaces the main vertical scrollbar with text showing percent scrolled",
"content_scripts": [
{
"matches": ["<all_urls>"],
"js": ["lib.js", "content_scripts/percent-scrollbar.js"],
"css": ["content_scripts/percent-scrollbar.css"],
"run_at": "document_end"
}
],
"background": {
"scripts": ["lib.js", "background.js"]
},
"browser_action": {
"default_icon": "icons/percent-scrollbar-96.png",
"default_title": "Percent Scrollbar",
"default_popup": "popup/popup.html"
},
"options_ui": {
"page": "options/options.html"
},
"icons": {
"96": "icons/percent-scrollbar-96.png"
},
"permissions": [
"storage",
"activeTab"
]
}