-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
36 lines (36 loc) · 862 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
33
34
35
36
{
"name": "Spotlight.js",
"version": "2.0.0",
"manifest_version": 2,
"description": "A JavaScript library for the Logitech Spotlight presentation remote control.",
"homepage_url": "https://github.com/manekinekko/spotlight.js",
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"all_frames": true,
"js": ["index.js"]
}
],
"browser_action": {
"default_title": "Spotlight.js",
"default_icon": {
"16": "assets/spotlight_16.png",
"24": "assets/spotlight_24.png",
"32": "assets/spotlight_32.png"
},
"default_popup": "popup.html"
},
"icons": {
"16": "assets/spotlight_white_16.png",
"48": "assets/spotlight_white_48.png",
"128": "assets/spotlight_white_128.png"
},
"permissions": [
"https://*/*",
"http://*/*",
"activeTab",
"storage"
]
}