-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmanifest.json
More file actions
35 lines (35 loc) · 758 Bytes
/
manifest.json
File metadata and controls
35 lines (35 loc) · 758 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
33
34
35
{
"manifest_version": 3,
"name": "Yellow Note",
"description": "A Chrome extension that allows you to highlight web pages and download all highlighted parts",
"version": "1.0",
"permissions": [
"storage",
"activeTab",
"scripting",
"tabs"
],
"action": {
"default_popup": "index.html",
"default_icon": "./asset/icon.png"
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"content.js"
],
"css": [
"styles.css"
]
}
],
"background": {
"scipts": [
"popup.js"
],
"peristen": false
}
}