-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathmanifest.json
More file actions
42 lines (38 loc) · 770 Bytes
/
manifest.json
File metadata and controls
42 lines (38 loc) · 770 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
41
42
{
"name": "Copy text with Alt-Click",
"version": "2.2.0",
"manifest_version": 3,
"description": "Copy text with Alt-Click. Easy and fast copy tool.",
"default_locale": "en",
"browser_specific_settings": {
"gecko": {
"id": "@copy-text-without-selecting"
}
},
"permissions" : [
"storage",
"clipboardWrite"
],
"host_permissions": [
"http://*/*",
"https://*/*"
],
"icons" : {
"48" : "icon.png"
},
"content_scripts": [
{
"matches": [
"http://*/*",
"https://*/*"
],
"js": [
"menu.js"
],
"run_at" : "document_start"
}
],
"options_ui": {
"page": "options.html"
}
}