Project

General

Profile

Download (1.4 KB) Statistics
| Branch: | Tag: | Revision:

haketilo / manifest.json @ e9b6187e

1
// This is the manifest file of Haketilo.
2
//
3
// Copyright (C) 2021 Wojtek Kosior
4
// Redistribution terms are gathered in the `copyright' file.
5
{
6
    "manifest_version": 2,
7
    "name": "Haketilo",
8
    "short_name": "Haketilo",
9
    "version": "0.1",
10
    "author": "various",
11
    "description": "Control your \"Web\" browsing.",_GECKO_APPLICATIONS_
12
    "icons":{
13
	"128": "icons/haketilo128.png",
14
	"64": "icons/haketilo64.png",
15
	"48": "icons/haketilo48.png",
16
	"32": "icons/haketilo32.png",
17
	"16": "icons/haketilo16.png"
18
    },
19
    "permissions": [
20
	"contextMenus",
21
	"webRequest",
22
	"webRequestBlocking",
23
	"activeTab",
24
	"notifications",
25
	"sessions",
26
	"storage",
27
	"tabs",
28
	"<all_urls>",
29
	"unlimitedStorage"
30
    ],
31
    "browser_action": {
32
	"browser_style": true,
33
	"default_icon": {
34
	    "128": "icons/haketilo128.png",
35
	    "64": "icons/haketilo64.png",
36
	    "48": "icons/haketilo48.png",
37
	    "32": "icons/haketilo32.png",
38
	    "16": "icons/haketilo16.png"
39
	},
40
	"default_title": "Haketilo",
41
	"default_popup": "html/display-panel.html"
42
    },
43
    "options_ui": {
44
	"page": "html/options.html",
45
	"open_in_tab": true
46
    },
47
    "web_accessible_resources": [_CHROMIUM_KEY_
48
    ],
49
    "background": {
50
	"persistent": true,
51
	"scripts": [_BGSCRIPTS_]
52
    },
53
    "content_scripts": [
54
	{
55
	    "run_at": "document_start",
56
	    "matches": ["<all_urls>"],
57
	    "match_about_blank": true,
58
	    "all_frames": true,
59
	    "js": [_CONTENTSCRIPTS_]
60
	}
61
    ]
62
}
(5-5/8)