-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmanifest.json
More file actions
29 lines (29 loc) · 752 Bytes
/
manifest.json
File metadata and controls
29 lines (29 loc) · 752 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
{
"name": "Hide Element",
"description": "Right click to hide an element",
"version": "0.1",
"permissions": [
"contextMenus",
"storage"
],
"background": {
"scripts": ["background.js"]
},
"content_scripts": [
{
"matches": ["<all_urls>"],
"js": ["content/cssUtil.js", "content/xpathUtil.js", "content/content.js"],
"run_at": "document_start"
}
],
"icons": {
"16": "images/icon16.png",
"48": "images/icon48.png",
"128": "images/icon128.png"
},
"browser_action": {
"default_icon": "images/icon19.png",
"default_popup": "browser_action/popup.html"
},
"manifest_version":2
}