-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
47 lines (47 loc) · 959 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
41
42
43
44
45
46
47
{
"name": "Smogon-Helper",
"version": "1.2",
"manifest_version": 2,
"author": "Prayansh Srivastava",
"description": "A small plugin for displaying popovers for Abilities on www.smogon.com",
"icons": {
"16": "img/16x16.png",
"48": "img/48x48.png",
"128": "img/128x128.png"
},
"page_action": {
"default_icon": {
"19": "img/19x19.png",
"38": "img/38x38.png"
},
"default_title": "Smogon"
},
"background": {
"scripts": [
"js/eventPage.js"
],
"persistent": false
},
"content_scripts": [
{
"matches": [
"*://www.smogon.com/*"
],
"css": [
"css/bootstrap.min.css",
"css/styles.css"
],
"js": [
"js/jquery.min.js",
"js/bootstrap.min.js",
"js/popoverHelpers.js",
"js/helpers.js",
"js/main.js"
],
"run_at": "document_idle"
}
],
"permissions": [
"http://pokeapi.co/*"
]
}