-
Notifications
You must be signed in to change notification settings - Fork 3
/
manifest.json
46 lines (39 loc) · 1.28 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
46
{
"manifest_version": 2,
"name": "Custom Titlebar Text",
"description": "Mozilla Firefox add-on lets you customize the titlebar text according to a rule. This changes the active window title and is useful for auto-type programs such as KeePass for entering correct account credentials.",
"version": "0.2.1.7",
"author": "Hrvoje Šolc",
"developer": {
"name": "Hrvoje Šolc",
"url": "https://github.com/hrvojesolc/Custom-Titlebar-Text"
},
"homepage_url": "https://github.com/hrvojesolc/Custom-Titlebar-Text",
"applications": {
"gecko": {
"id": "{b5a43a70-4092-4899-9c44-63799150b35e}"
}
},
"icons": {
"16": "icons/custom_titlebar_text-16.png",
"20": "icons/custom_titlebar_text-20.png",
"24": "icons/custom_titlebar_text-24.png",
"32": "icons/custom_titlebar_text-32.png",
"48": "icons/custom_titlebar_text-48.png",
"64": "icons/custom_titlebar_text-64.png",
"128": "icons/custom_titlebar_text-128.png",
"256": "icons/custom_titlebar_text-256.png",
"512": "icons/custom_titlebar_text-512.png"
},
"content_scripts": [
{
"matches": ["<all_urls>"],
"js": ["custom-titlebar-text.js"]
}
],
"options_ui": {
"page": "preferences.html",
"browser_style": true
},
"permissions": ["storage"]
}