-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest-firefox.json
57 lines (57 loc) · 1.44 KB
/
manifest-firefox.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
{
"manifest_version": 3,
"name": "URI Splitter",
"short_name": "URI Splitter",
"description": "Easily and quickly edit the URL/URI from the current page",
"author": "Denilson S\u00e1 Maia",
"version": "1.2.2",
"homepage_url": "https://github.com/denilsonsa/crx-uri-splitter/",
"icons": {
"16" : "icons/icon-logo-16.png",
"24" : "icons/icon-logo-24.png",
"32" : "icons/icon-logo-32.png",
"48" : "icons/icon-logo-48.png",
"64" : "icons/icon-logo-64.png",
"128": "icons/icon-logo-128.png",
"256": "icons/icon-logo-256.png"
},
"action": {
"default_icon": {
"16" : "icons/icon-logo-16.png",
"24" : "icons/icon-logo-24.png",
"32" : "icons/icon-logo-32.png",
"48" : "icons/icon-logo-48.png",
"64" : "icons/icon-logo-64.png",
"128": "icons/icon-logo-128.png",
"256": "icons/icon-logo-256.png"
},
"default_popup": "popup.html",
"default_title": "URI Splitter"
},
"background": {
"scripts": ["common.js", "serviceworker.js"]
},
"commands": {
"_execute_action": {
"suggested_key": {
"default": "Ctrl+Shift+L",
"mac": "MacCtrl+L"
}
}
},
"options_ui": {
"page": "options.html",
"open_in_tab": false
},
"incognito": "spanning",
"permissions": [
"activeTab",
"storage"
],
"content_security_policy": {},
"browser_specific_settings": {
"gecko": {
"id": "uri-splitter@denilson.sa.nom.br"
}
}
}