-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest_edge_browser.json
executable file
·59 lines (59 loc) · 1.22 KB
/
manifest_edge_browser.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
{
"description": "Provides a optional overlay, and context menu for browser text selections and quickly open links in background.",
"homepage_url": "https://github.com/jrie/textcompanion",
"manifest_version": 3,
"name": "TextCompanion",
"version": "0.2.3",
"permissions": [
"storage",
"activeTab",
"contextMenus"
],
"host_permissions": [
"<all_urls>"
],
"options_ui": {
"page": "page_settings.html",
"browser_style": false
},
"icons": {
"128": "icons/tc_128x128.png",
"16": "icons/tc_16x16.png",
"48": "icons/tc_48x48.png",
"64": "icons/tc_64x64.png"
},
"background": {
"service_worker": "textcompanion_bg.js",
"all_frames": true
},
"web_accessible_resources": [
{
"resources": [
"/img/*",
"textcompanion.css",
"textcompanion_edge.css"
],
"matches": [
"http://*/*",
"https://*/*"
]
}
],
"content_scripts": [
{
"matches": [
"http://*/*",
"https://*/*"
],
"js": [
"textcompanion.js"
],
"css": [
"textcompanion.css",
"textcompanion_edge.css"
],
"run_at": "document_idle",
"all_frames": true
}
]
}