forked from Tylian/XKit
-
Notifications
You must be signed in to change notification settings - Fork 135
/
manifest.json
42 lines (42 loc) · 1.23 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
{
"content_scripts": [ {
"all_frames": true,
"run_at": "document_start",
"css": [ "xkit.css" ],
"exclude_matches": [
"*://*.tumblr.com/*/audio_player_iframe/*",
"*://*.tumblr.com/*/photoset_iframe/*",
"*://assets.tumblr.com/*",
"*://*.media.tumblr.com/*",
"*://www.tumblr.com/upload/image*",
"*://www.tumblr.com/video/*"
],
"js": [
"bridge.js",
"vendor/jquery.js",
"vendor/tiptip.js",
"vendor/moment.js",
"vendor/nano.js",
"xkit.js"
],
"matches": [ "*://*.tumblr.com/*" ]
} ],
"description": "A fork of XKit, the extension framework for Tumblr.",
"homepage_url": "https://github.com/new-xkit/XKit",
"icons": {
"128": "icon.png"
},
"manifest_version": 2,
"minimum_chrome_version": "44.0",
"name": "New XKit",
"author": "New XKit Team",
"permissions": ["storage", "unlimitedStorage", "*://*.tumblr.com/*", "https://new-xkit.github.io/XKit/*", "https://cloud.new-xkit.com/*" ],
"version": "7.10.0",
"web_accessible_resources": [ "*.js", "*.json", "*.css" ],
"applications": {
"gecko": {
"id": "@new-xkit",
"update_url": "https://new-xkit.github.io/XKit/Extensions/dist/page/FirefoxUpdate.json"
}
}
}