-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmanifest.json
More file actions
27 lines (27 loc) · 804 Bytes
/
manifest.json
File metadata and controls
27 lines (27 loc) · 804 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
{
"manifest_version": 2,
"name": "Sticky Notes",
"version": "1.0.3",
"description": "Add notes and comments whenever, wherever",
"default_locale": "en",
"icons": {
"128": "./assets/images/sticky_notes_124x124.jpg"
},
"background": {
"scripts": ["./background/background.js"]
},
"browser_action": {
"default_title": "Sticky Note",
"default_icon": "./assets/images/sticky_notes_124x124.jpg",
"default_popup": "./popup/popup.html"
},
"content_scripts": [
{
"run_at": "document_end",
"matches": ["<all_urls>"],
"js": ["./content_script/content_script.js"]
}
],
"permissions": ["contextMenus", "storage"],
"web_accessible_resources": ["popup/popup.html"]
}