-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
41 lines (41 loc) · 1.1 KB
/
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
41
{
"name": "TAAAC for Stackoverflow",
"version": "0.6",
"description": "Points out wrong accepted answers on Stackoverflow.",
"browser_action": {
"default_title": "TAAAC",
"default_icon": "imgs/icon_16.png",
"default_popup": "popup.html"
},
"icons": {
"16": "imgs/icon_16.png",
"48": "imgs/icon_48.png",
"128": "imgs/icon_128.png"
},
"content_scripts": [
{
"matches": [
"http://stackoverflow.com/questions/*",
"https://stackoverflow.com/questions/*"
],
"js": [
"libs/jquery-3.1.1.min.js",
"libs/lodash.min.js",
"inject.js"
],
"run_at": "document_end"
}
],
"permissions": [
"tabs",
"http://stackoverflow.com/questions/*",
"https://stackoverflow.com/questions/*"
],
"web_accessible_resources": [
"imgs/check_green.svg",
"imgs/check_yellow.svg",
"imgs/check_orange.svg",
"imgs/check_gray.svg"
],
"manifest_version": 2
}