-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathmanifest.json
40 lines (40 loc) · 887 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
37
38
39
40
{
"manifest_version": 2,
"name": "Github Stars Manager",
"description": "This extension allows you to manage your Github stars with tags and create categorized bookmark folder with the tags you created.",
"version": "1.7",
"browser_action": {
"default_icon": "src/assets/images/icons/icon.png"
},
"icons": {
"16": "src/assets/images/icons/icon16.png",
"48": "src/assets/images/icons/icon48.png",
"128": "src/assets/images/icons/icon128.png"
},
"permissions": [
"contextMenus",
"bookmarks",
"tabs",
"activeTab",
"storage"
],
"background": {
"scripts": [
"dist/background.js"
]
},
"content_scripts": [
{
"matches": [
"http://github.com/*",
"https://github.com/*"
],
"js": [
"dist/content_script.js"
],
"css": [
"dist/main.css"
]
}
]
}