-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathmanifest.json
executable file
·54 lines (54 loc) · 1.43 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
{
"name": "Medium Next Generation Stats",
"version": "1.0.22",
"description": "Take your medium text stats to the Next Generation",
"manifest_version": 2,
"author": "Guilherme Virgs Moraes <https://pagehub.me/virgs>",
"permissions": [
"storage",
"unlimitedStorage"
],
"content_scripts": [
{
"matches": [
"https://medium.com/*/stats",
"https://medium.com/*/stats/",
"https://medium.com/*/stats/stories"
],
"run_at": "document_idle",
"css": [
"src/css/mngs.css"
],
"js": [
"src/libs/regular.js",
"src/libs/solid.js",
"src/libs/fontawesome.js",
"src/libs/Chart.bundle.js",
"src/js/buy.js",
"src/js/online-store.js",
"src/js/totals.js",
"src/js/process-earnings.js",
"src/js/dynamic-table-handler.js",
"src/js/vertical-stacked-bar-chart-generator.js",
"src/js/pie-chart-generator.js",
"src/js/chart-generator.js",
"src/js/ranges.js",
"src/js/renew-html.js",
"src/js/renew-publication-html.js",
"src/js/cache.js",
"src/js/main.js"
]
}
],
"icons": {
"16": "images/sym-16.png",
"32": "images/sym-32.png",
"64": "images/sym-64.png",
"128": "images/sym-128.png",
"256": "images/sym-256.png",
"512": "images/sym-512.png"
},
"browser_action": {
"default_title": "Medium Next Generation Stats"
}
}