-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmanifest.json
More file actions
33 lines (33 loc) · 965 Bytes
/
Copy pathmanifest.json
File metadata and controls
33 lines (33 loc) · 965 Bytes
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
{
"name": "Paper.io 2 Stats Counter",
"version": "0.1.1",
"description": "Gathers statistics about your Paper.io 2 play.",
"permissions": ["activeTab", "declarativeContent", "storage"],
"options_page": "options.html",
"background": {
"scripts": ["background.js"],
"persistent": false
},
"content_scripts": [{
"matches": ["*://paper-io.com/*"],
"js": ["recorder.js"]
}],
"page_action": {
"default_popup": "popup.html",
"default_icon": {
"16": "images/P2SCLogoTransparent16x.png",
"32": "images/P2SCLogoTransparent32x.png",
"48": "images/P2SCLogoTransparent48x.png",
"64": "images/P2SCLogoTransparent64x.png",
"128": "images/P2SCLogoTransparent128x.png"
}
},
"icons": {
"16": "images/P2SCLogoTransparent16x.png",
"32": "images/P2SCLogoTransparent32x.png",
"48": "images/P2SCLogoTransparent48x.png",
"64": "images/P2SCLogoTransparent64x.png",
"128": "images/P2SCLogoTransparent128x.png"
},
"manifest_version": 2
}