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: ec4c38374065d59670e6465004e46ad54d2bc080 (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
62
63
64
65
66
67
{
    "manifest_version": 2,
    "name"            : "__MSG_extensionName__",
    "version"         : "1.4.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"
    },
    "browser_action"  : {
        "default_icon" : "img/passwords-16.png",
        "default_title": "__MSG_browserActionTitle__",
        "default_popup": "html/manager.html",
        "browser_style": true,
        "theme_icons"  : [
            {
                "light": "img/passwords-light.svg",
                "dark" : "img/passwords-dark.svg",
                "size" : 12
            },
            {
                "light": "img/passwords-light.svg",
                "dark" : "img/passwords-dark.svg",
                "size" : 16
            },
            {
                "light": "img/passwords-light.svg",
                "dark" : "img/passwords-dark.svg",
                "size" : 32
            },
            {
                "light": "img/passwords-light.svg",
                "dark" : "img/passwords-dark.svg",
                "size" : 64
            }
        ]
    },
    "background"      : {
        "scripts": [
            "js/chrome-polyfill.js",
            "js/background.js"
        ]
    },
    "content_scripts" : [
        {
            "matches": [
                "http://*/*",
                "https://*/*"
            ],
            "js"     : [
                "js/chrome-polyfill.js",
                "js/client.js"
            ]
        }
    ],
    "permissions"     : [
        "*://*/*",
        "tabs",
        "storage",
        "contextMenus",
        "notifications"
    ]
}