Project

General

Profile

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

haketilo / manifest.json @ d1d5d4fb

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
	"unlimitedStorage"
28
    ],
29
    "browser_action": {
30
	"browser_style": true,
31
	"default_icon": {
32
	    "128": "icons/hachette128.png",
33
	    "64": "icons/hachette64.png",
34
	    "48": "icons/hachette48.png",
35
	    "32": "icons/hachette32.png",
36
	    "16": "icons/hachette16.png"
37
	},
38
	"default_title": "Hachette",
39
	"default_popup": "html/display-panel.html"
40
    },
41
    "options_ui": {
42
	"page": "html/options.html",
43
	"open_in_tab": true
44
    },
45
    "web_accessible_resources": [
46
    ],
47
    "background": {
48
	"persistent": true,
49
	"scripts": [_BGSCRIPTS_]
50
    },
51
    "content_scripts": [
52
	{
53
	    "run_at": "document_start",
54
	    "matches": ["<all_urls>"],
55
	    "match_about_blank": true,
56
	    "all_frames": true,
57
	    "js": [_CONTENTSCRIPTS_]
58
	}
59
    ]
60
}
(5-5/8)