-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathmanifest.json
More file actions
32 lines (32 loc) · 812 Bytes
/
manifest.json
File metadata and controls
32 lines (32 loc) · 812 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
{
"name": "Inject Javascript -- Synced & Open Source",
"version": "1.1",
"description": "Inject javascript in web pages, synced across your devices",
"permissions": ["activeTab", "storage"],
"options_page": "options.html",
"background": {
"scripts": ["background.js"],
"persistent": false
},
"content_scripts": [
{
"matches": ["http://*/*", "https://*/*"],
"css": [],
"js": ["contentScript.js"]
}
],
"browser_action": {
"default_popup": "popup.html",
"default_icon": {
"72": "images/icon-72x72.png",
"128": "images/icon-128x128.png",
"512": "images/icon-512x512.png"
}
},
"icons": {
"72": "images/icon-72x72.png",
"128": "images/icon-128x128.png",
"512": "images/icon-512x512.png"
},
"manifest_version": 2
}