forked from andy071001/nightfall
-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
36 lines (36 loc) · 1.25 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
{
"name": "豆瓣\"我的小组\"增强",
"version": "0.8.7",
"description": "给豆瓣\"我的小组\"页面增加ajax刷新、屏蔽帖子、屏蔽用户和小组成员列表功能",
"background_page": "background.html",
"content_scripts" : [
{
"matches" : [
"http://www.douban.com/group/",
"http://www.douban.com/group/?start=*"
],
"js" : ["jquery.min.js", "common.js"],
"all_frames" : false,
"run_at" : "document_start"
},
{
"matches" : [
"http://www.douban.com/group/",
"http://www.douban.com/group/?start=*"
],
"css" : ["inject.css"],
"js" : ["topics.js", "localmembers.js"],
"all_frames" : false,
"run_at" : "document_end"
}
],
"page_action" :
{
"default_icon" : "icon-19.png",
"default_title" : "u: 刷新帖子列表\nj: 选中下一个帖子/小组\nk: 选中上一个帖子/小组\no: 展开/折叠当前选中的帖子/小组\nm: 屏蔽当前选中的帖子\nb: 屏蔽当前选中的帖子的作者"
},
"icons" : {
"48" : "icon-48.png",
"128" : "icon-128.png"
}
}