-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
29 lines (29 loc) · 958 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
{
"manifest_version": 2,
"name": "下班看路况",
"description": "This extension shows a Google Image search result for the current page",
"version": "1.0",
"content_security_policy": "script-src 'self' https://vdata.amap.com/ https://restapi.amap.com/ https://webapi.amap.com/ https://sp3.baidu.com/ https://ss0.bdstatic.com/ https://api.map.baidu.com 'unsafe-eval'; object-src 'self'",
"browser_action": {
"default_icon": "icon.png",
"default_popup": "popup.html",
"default_title": "下班看路况"
},
"options_ui": {
"page": "options.html",
"chrome_style": true
},
"permissions": [
"storage"
],
"content_scripts": [{
"matches": ["https://bbs.byr.cn/*"],
"js": ["byr.js"],
"runat": "document_start",
"all_frames": true
}],
"background":{
//"page":"background.html",
"scripts":["background.js"]
}
}