-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
51 lines (42 loc) · 1.21 KB
/
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
{
"manifest_version": 2,
"name": "Stutter Scroll",
"version": "1.0.2",
"homepage_url": "https://github.com/richardbrockie/stutter_scroll",
"description": "Use a set of webpages as digital signage. \n\nReading scrolling text is difficult - Stutter Scroll pauses as it scrolls through a set of webpages. Pauses occur at instances of a specified css class - these tags should each have a unique #id selector assigned. Stutter Scroll scrolls to each #id in turn.\n\nMore info at GitHub.",
"applications": {
"gecko": {
"id": "[email protected]"
}
},
"developer": {
"name": "Richard Brockie / OnTheDay.net"
},
"icons": {
"96": "icons/stutter_scroll.svg",
"48": "icons/stutter_scroll.svg"
},
"permissions": [
"activeTab",
"tabs",
"storage"
],
"options_ui": {
"page": "options.html",
"browser_style": true
},
"browser_action": {
"browser_style": true,
"default_icon": "icons/stutter_scroll.svg",
"default_title": "Start Stutter Scroll"
},
"background": {
"scripts": ["stutter_scroll.js"]
},
"content_scripts": [
{
"matches": ["http://*/*", "https://*/*"],
"js": ["content_scripts/messages.js"]
}
]
}