-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
45 lines (45 loc) · 1.17 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
{
"name": "__MSG_appName__",
"short_name": "FlipClip",
"description": "__MSG_appDesc__",
"author": "Yasmin Seidel (JasminDreasond)",
"default_locale": "en",
"version": "0.3.0",
"manifest_version": 3,
"offline_enabled": false,
"homepage_url": "https://github.com/JasminDreasond/FlipClip-Browser",
"background": {
"service_worker": "background.js"
},
"action": {
"default_title": "__MSG_appName__"
},
"permissions": [
"contentSettings",
"background",
"storage",
"unlimitedStorage",
"webRequest",
"history",
"contextMenus",
"scripting"
],
"icons": {
"128": "icons/icon_128.png",
"16": "icons/icon_16.png",
"38": "icons/icon_38.png",
"48": "icons/icon_48.png"
},
"host_permissions": ["<all_urls>"],
"content_scripts": [{
"matches": ["<all_urls>"],
"js": [
"/js/jquery.min.js",
"/js/contextMenus/browser.js",
"/js/ud/domains.js",
"/js/contextMenus/getSelection.js"
],
"all_frames": true,
"match_about_blank": true
}]
}