-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
46 lines (37 loc) · 1.18 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
{
"manifest_version": 2,
"name": "ResultScroller",
"description": "Scroll a tab/page to the bottom, pause, scroll up to top, reload and repeat.\n\nThis add-on is written for scrolling sport results that are updated as more competitors finishes. When the results page gets bigger than what the browser window can show, it will start to scroll its content.\n\nThe scroll speed, the length of the pauses at the top and bottom and the minimum time between reloads are fully configurable.",
"version": "0.1",
"author": "joja",
"homepage_url": "https://github.com/epkjoja/firefox-resultscroller",
"browser_specific_settings": {
"gecko": {
"id": "resultscroller@joja.se"
}
},
"permissions": ["storage"],
"icons": {
"48": "icons/scroll.svg",
"96": "icons/scroll.svg"
},
"browser_action": {
"default_icon": {
"16": "icons/scroll.svg",
"32": "icons/scroll.svg"
},
"default_title": "ResultScroller"
},
"content_scripts": [
{
"matches": [ "*://*/*", "file:///*" ],
"js": [ "scroller.js" ]
}
],
"background": {
"scripts": [ "background.js" ]
},
"options_ui": {
"page": "options/options.html"
}
}