-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
64 lines (64 loc) · 1.52 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
{
"manifest_version": 2,
"name": "Frame It",
"description": "Allows you to save images and view them inside the extension window for easy access, similar to how one keeps photographs of loved ones inside their wallet.",
"version": "0.0.1",
"icons": {
"64": "icons/mainicon.svg",
"16": "icons/mainicon.svg",
"32": "icons/mainicon.svg",
"48": "icons/mainicon.svg"
},
"background": {
"scripts": ["background_script.js"]
},
"browser_action": {
"default_icon": {
"64": "icons/icon.svg",
"16": "icons/icon.svg",
"32": "icons/icon.svg",
"48": "icons/icon.svg"
},
"theme_icons": [
{
"dark": "icons/icon.svg",
"light": "icons/icon_dark.svg",
"size": 16
},
{
"dark": "icons/icon.svg",
"light": "icons/icon_dark.svg",
"size": 32
},
{
"dark": "icons/icon.svg",
"light": "icons/icon_dark.svg",
"size": 64
},
{
"dark": "icons/icon.svg",
"light": "icons/icon_dark.svg",
"size": 48
}
],
"default_popup": "browserAction/firstExtVer.html",
"default_title": "Frame It"
},
"options_ui": {
"page": "options/index.html"
},
"content_scripts": [
{
"matches": ["<all_urls>"],
"js": ["content_script.js"],
"css": ["content_styles.css"]
}
],
"permissions": ["contextMenus", "storage"],
"browser_specific_settings": {
"gecko": {
"id": "[email protected]",
"strict_min_version": "42.0"
}
}
}