-
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) · 751 Bytes
/
manifest.json
File metadata and controls
27 lines (27 loc) · 751 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
{
"author": "Daniel R. Alvarenga",
"manifest_version": 2,
"name": "Follcker",
"version": "1.0",
"permissions": ["activeTab", "storage", "https://api.github.com/*"],
"background": {
"scripts": ["src/modules/background.js"],
"persistent": false
},
"content_scripts": [
{
"matches": ["https://github.com/*?*tab=following*"],
"js": ["src/modules/content.js"]
}
],
"browser_action": {
"default_popup": "src/view/popup.html",
"default_icon": {
"16": "src/assets/source/icon/icon16.png",
"32": "src/assets/source/icon/icon32.png",
"48": "src/assets/source/icon/icon48.png",
"64": "src/assets/source/icon/icon64.png",
"128": "src/assets/source/icon/icon128.png"
}
}
}