-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathmanifest.json
More file actions
29 lines (29 loc) · 812 Bytes
/
manifest.json
File metadata and controls
29 lines (29 loc) · 812 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
{
"manifest_version": 2,
"version": "1.0.4",
"name": "StackOverview",
"author": "Jason Wang",
"description": "View quick stats about StackOverflow and StackExchange posts from Google search results",
"content_scripts": [
{
"matches": [
"*://www.google.com/*",
"*://www.google.ca/*"
],
"css": ["style.css"],
"js": ["index.js"],
"run_at": "document_end",
"all_frames": true
}
],
"permissions": [
"http://*.stackoverflow.com/*",
"https://*.stackoverflow.com/*",
"http://*.stackexchange.com/*",
"https://*.stackexchange.com/*"
],
"icons": {
"48": "icons/so48trans.png",
"128": "icons/so128trans.png"
}
}