forked from latestchatty/chromeshack
-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
80 lines (80 loc) · 2.57 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "Chrome Shack",
"version": "1.22",
"description": "Collection of scripts for Shacknews.",
"update_url": "http://adam.hughes.cc/shack/chromeshack/autoupdate.xml",
"options_page": "options.html",
"background_page": "background.html",
"key": "MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQCWWHErcZ8ekxgRQ0J7InM4HgR/LoVOu0Olugg3VUHyQGJ7kpHvrMyeoDfOFxy9EagnQDtyZzxkkwhSzxr8cnh57qFxyTqI1P+RR1cSFcHsVocnLhkTI3uVwzEmDXJK8U4k1Z6NzY2Y/7TQkHQBqR4eBDTdxJks70wvt7gt2v047wIDAQAB",
"page_action": {
"default_icon": "shack.png",
"default_title": "Chrome Shack",
"popup": "options.html"
},
"icons": {
"16": "shack.png",
"128": "icon.png"
},
"content_scripts": [
{
"js": [
"common.js",
"sentence_parser.js",
"init_events.js",
"scripts/lol.js",
"scripts/comment_tags.js",
"scripts/post_preview.js",
"scripts/dinogegtik.js",
"scripts/category_banners.js",
"scripts/image_loader.js",
"scripts/video_loader.js",
"scripts/sparkly_comic.js",
"scripts/collapse.js",
"scripts/sfw.js",
"scripts/new_comment_highlighter.js",
"scripts/highlight_users.js",
"scripts/local_timestamp.js",
"scripts/expiration_watcher.js",
"scripts/getpost.js",
"scripts/elder_scroll.js",
"chromeshack_posts.js",
"default_settings.js",
"settings.js"
],
"css": [ "chromeshack.css" ],
"matches": [
"http://www.shacknews.com/chatty*",
"http://new.shacknews.com/chatty*",
"http://www.shacknews.com/article/*"
],
"all_frames": false,
"run_at": "document_idle"
},
{
"js": [
"common.js",
"init_events.js",
"chromeshack_profile.js",
"settings.js"
],
"matches": [ "http://www.shacknews.com/profile/*", "http://www.shacknews.com/profile.x*"],
"all_frames": false,
"run_at": "document_idle"
},
{
"js": [
"scripts/winchatty_search.js",
"scripts/shack-userpopup.user.js"
],
"matches": [ "http://www.shacknews.com/*" ],
"all_frames": false,
"run_at": "document_idle"
}
],
"permissions": [
"contextMenus"
, "http://www.lmnopc.com/greasemonkey/shacklol/*"
, "http://shackapi.stonedonkey.com/*"
, "http://*.shacknews.com/*"
]
}