-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
executable file
·56 lines (56 loc) · 1.41 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
{
"manifest_version": 2,
"name": "Wikiage",
"short_name": "Wikiage",
"version": "1.0.1",
"description": "Applies an aging effect to Wikipedia pages depending on time since their last edit.",
"icons": {
"16": "images/icon-16.png",
"48": "images/icon-48.png",
"128": "images/icon-128.png"
},
"author": "Jesse Friedman <jesse.ws>",
"content_scripts": [
{
"matches": [
"*://*.wikipedia.org/*",
"*://*.wiktionary.org/*",
"*://*.wikiquote.org/*",
"*://*.wikibooks.org/*",
"*://*.wikisource.org/*",
"*://*.wikinews.org/*",
"*://*.wikiversity.org/*",
"*://*.mediawiki.org/*",
"*://*.wikidata.org/*",
"*://*.wikivoyage.org/*",
"*://species.wikimedia.org/*",
"*://commons.wikimedia.org/*",
"*://meta.wikimedia.org/*",
"*://incubator.wikimedia.org/*",
"*://outreach.wikimedia.org/*",
"*://wikitech.wikimedia.org/*",
"*://*.wikimediafoundation.org/*"
],
"js": [
"wikiage.js"
],
"css": [
"wikiage.css"
],
"run_at": "document_idle"
}
],
"homepage_url": "https://github.com/okofish/wikiage",
"options_ui": {
"page": "options.html",
"chrome_style": true
},
"permissions": [
"storage"
],
"web_accessible_resources": [
"images/overlay.jpg",
"images/cracks.png",
"images/wiki-logo.png"
]
}