Welcome to mirror list, hosted at ThFree Co, Russian Federation.

manifest.json « chrome « platform « src - github.com/marius-wieschollek/passwords-webextension.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: ffd1eed20c5fea327fbeac94f84d85a1ee6b5b10 (plain)
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
{
    "manifest_version"       : 2,
    "name"                   : "__MSG_extensionName__",
    "version"                : "2.2.1.99999",
    "version_name"           : "2.2.1",
    "description"            : "__MSG_extensionDescription__",
    "author"                 : "Marius Wieschollek",
    "default_locale"         : "en",
    "icons"                  : {
        "16" : "img/passwords-16.png",
        "32" : "img/passwords-32.png",
        "48" : "img/passwords-48.png",
        "96" : "img/passwords-96.png",
        "128": "img/passwords-128.png"
    },
    "browser_action"         : {
        "default_icon" : "img/passwords-16.png",
        "default_title": "__MSG_browserActionTitle__",
        "default_popup": "html/popup.html",
        "browser_style": true,
        "theme_icons"  : [
            {
                "light": "img/passwords-light.png",
                "dark" : "img/passwords-dark.png",
                "size" : 16
            }
        ]
    },
    "background"             : {
        "scripts": [
            "js/background.js"
        ]
    },
    "options_ui"             : {
        "page": "html/options.html"
    },
    "content_security_policy": "script-src 'self' 'wasm-eval' blob:; object-src 'self'",
    "content_scripts"        : [
        {
            "matches"   : [
                "http://*/*",
                "https://*/*"
            ],
            "js"        : [ "js/client.js" ],
            "all_frames": true
        }
    ],
    "permissions"            : [
        "*://*/*",
        "tabs",
        "storage",
        "clipboardWrite",
        "contextMenus",
        "notifications",
        "webRequest",
        "webRequestBlocking"
    ],
    "optional_permissions"   : [
        "clipboardRead"
    ]
}