forked from lisongx/doubanIMDb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
36 lines (35 loc) · 878 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
{
"name": "doubanIMDb",
"version": "0.5",
"manifest_version": 2,
"description": "the extension for movie freak",
"icons": {
"16": "images/icon128.png",
"48": "images/icon128.png",
"128": "images/icon128.png"
},
"browser_action": {
"default_icon": "images/icon128.png",
"default_title": "doubanIMDb"
},
"content_scripts": [
{
"matches": ["http://movie.douban.com/subject/*"],
"js": ["libs/jquery.min.js","build/script.js"]
}
],
"background": {
"scripts": ["fancy-settings/source/lib/store.js", "build/background.js"],
"persistent": false
},
"permissions": [
"http://movie.douban.com/*",
"http://imdbapi.notimportant.org/*"
],
"web_accessible_resources": [
"images/fresh.png",
"images/rotten.png",
"images/none.png"
],
"options_page" : "fancy-settings/source/index.html"
}