-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathmanifest.json
44 lines (44 loc) · 830 Bytes
/
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
{
"manifest_version": 2,
"name": "YOURLS",
"short_name": "YOURLS",
"version": "2.2.1",
"author": "Martin Scharm <https://binfalse.de/contact/>",
"description": "Shorten URLs with your own YOURLS instance",
"icons":
{
"16": "img/logo16.png",
"19": "img/logo19.png",
"38": "img/logo38.png",
"48": "img/logo48.png",
"128": "img/logo128.png"
},
"permissions":
[
"activeTab",
"storage",
"clipboardWrite",
"contextMenus",
"http://*/*",
"https://*/*"
],
"background":
{
"scripts": ["background.js"]
},
"options_ui": {
"page": "options.html"
},
"browser_action": {
"default_icon":
{
"16": "img/logo16.png",
"19": "img/logo19.png",
"38": "img/logo38.png",
"48": "img/logo48.png",
"128": "img/logo128.png"
},
"default_title": "YOURLS",
"default_popup": "popup.html"
}
}