-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmanifest.opera.json
More file actions
40 lines (40 loc) · 979 Bytes
/
manifest.opera.json
File metadata and controls
40 lines (40 loc) · 979 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
34
35
36
37
38
39
40
{
"manifest_version": 2,
"name": "PixelGrid",
"author": "Sergey Zwezdin (sergey@zwezdin.com)",
"description": "",
"version": "0.4.0",
"icons": {
"16": "assets/pixelgrid-16.png",
"32": "assets/pixelgrid-32.png",
"48": "assets/pixelgrid-48.png",
"64": "assets/pixelgrid-64.png",
"128": "assets/pixelgrid-128.png"
},
"browser_action": {
"default_icon": {
"16": "assets/pixelgrid-16.png",
"32": "assets/pixelgrid-32.png",
"48": "assets/pixelgrid-48.png",
"64": "assets/pixelgrid-64.png",
"128": "assets/pixelgrid-128.png"
},
"default_title": "PixelGrid",
"default_popup": "index.html"
},
"content_scripts": [
{
"matches": ["*://*/*"],
"js": ["browser.js"],
"run_at": "document_start"
}
],
"background":{
"scripts": ["background.js"],
"persistent": false
},
"options_ui": {
"page": "options.html"
},
"permissions": ["activeTab", "storage"]
}