Project

General

Profile

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

haketilo / manifest.json @ d85dcc1e

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