-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmanifest.json
40 lines (40 loc) · 980 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
36
37
38
39
40
{
"name": "Tumblr personal post highlighter",
"author": "Luis Rojas <lluisrojass@gmail.com>",
"manifest_version": 2,
"version": "1.1.0",
"description": "Highlight a blog's uploaded posts",
"permissions": [
"declarativeContent",
"storage"
],
"page_action": {
"default_tooltip": "Personal Post Highlighter for Tumblr",
"default_icon": {
"16": "icons/off/16x16.png",
"32": "icons/off/32x32.png",
"48": "icons/off/48x48.png",
"128": "icons/off/128x128.png"
}
},
"icons": {
"16": "icons/off/16x16.png",
"32": "icons/off/32x32.png",
"48": "icons/off/48x48.png",
"128": "icons/off/128x128.png"
},
"content_scripts": [
{
"matches": ["*://*.tumblr.com/archive*"],
"js": ["lib/content.bundle.js"],
"run_at": "document_start"
}
],
"background": {
"scripts": [
"lib/ui.background.bundle.js",
"lib/installer.background.bundle.js"
],
"persist": false
}
}