-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
87 lines (81 loc) · 2.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
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
81
82
83
84
85
86
87
{
"manifest_version": 2,
"author": "Amndeep Singh Mann",
"name": "PTW Extender",
"version": "2.2.3",
"description": "Adds titles to your MyAnimeList, AniList, or Kitsu plan-to-watch/read list with the url of where you found it added as a comment.",
"applications": {
"gecko": {
"id": "{c4d3fb11-c300-4eed-a904-144fba03fb61}"
}
},
"key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAi6loUJRdIlYgMvPgc0lxfCjOoxNVJhcY2cM8T2qNx67iXfcVGn3xk7Mvfd1sFsg3ywnW1Q4XVY/gmmAoaZpXICOAHIAOMPKjvilaoEIp3AL0EgKbI9Doj/HAQzWam8v2m6qnj69dkuG8gPwamhowyOMwxwYOcbbQGcYgXUAhL4kKZd8m0PATYs9uXqzyuZQOAsbBxPVE8ga6OIGSk16IaEdJ4IrBW620UZ8J7ft2Ud14NrycoRRBDXR3iA5fzJoeltKFsmIu3BAHP3icXxd9ShF90hUPB5KGi1ThavaNAOCo79u1ZeQbwaQDLiwFtB6Pb3ul789PN9+zOzLubk0biQIDAQAB",
"icons": {
"16": "icons/icon_16.png",
"32": "icons/icon_32.png",
"48": "icons/icon_48.png",
"64": "icons/icon_64.png",
"96": "icons/icon_96.png",
"128": "icons/icon_128.png"
},
"permissions": [
"https://myanimelist.net/*",
"contextMenus",
"identity",
"notifications",
"storage",
"tabs",
"webNavigation"
],
"background": {
"scripts": [
"lib/browser-polyfill.js",
"lib/umd.js",
"options/options-defaults.js",
"generic/generic.js",
"mal/mal.js",
"anilist/query.js",
"anilist/anilist.js",
"kitsu/kitsu.js",
"menu.js"
],
"persistent": false
},
"options_ui": {
"page": "options/options.html",
"open_in_tab": true
},
"content_scripts": [
{
"matches": ["*://anilist.co/*"],
"js": [
"lib/browser-polyfill.js",
"lib/linkify.js",
"lib/linkify-element.js",
"anilist/prettified.js",
"generic/prettified.js"
]
},
{
"matches": ["*://kitsu.io/*"],
"js": [
"lib/browser-polyfill.js",
"lib/linkify.js",
"lib/linkify-element.js",
"kitsu/prettified.js",
"generic/prettified.js"
]
},
{
"matches": ["*://myanimelist.net/ownlist/*"],
"js": [
"lib/browser-polyfill.js",
"lib/linkify.js",
"lib/linkify-element.js",
"mal/prettified.js",
"generic/prettified.js"
],
"all_frames": true
}
]
}