-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmanifest.json
55 lines (55 loc) · 1.34 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
{
"manifest_version": 2,
"author": "luv4bytes",
"name": "__MSG_extensionName__",
"version": "1.4",
"description": "__MSG_extensionDescription__",
"homepage_url": "https://github.com/luv4bytes/rotor",
"default_locale": "en",
"browser_specific_settings": {
"gecko": {
"id": "[email protected]"
}
},
"permissions": [
"contextMenus"
],
"background": {
"scripts": [
"src/js/background.js"
]
},
"content_scripts": [
{
"matches": [
"http://*/*",
"https://*/*"
],
"js": [
"src/js/engine.js"
]
}
],
"icons": {
"48": "icons/format-rotate-90_dark.png"
},
"page_action": {
"browser_style": true,
"default_icon": "icons/format-rotate-90_dark.png",
"default_title": "__MSG_defaultPageActionTitle__",
"show_matches": [
"http://*/*.png",
"https://*/*.png",
"file://*/*.png",
"http://*/*.jpg",
"https://*/*.jpg",
"file://*/*.jpg",
"http://*/*.jpeg",
"https://*/*.jpeg",
"file://*/*.jpeg",
"http://*/*.gif",
"https://*/*.gif",
"file://*/*.gif"
]
}
}