aboutsummaryrefslogtreecommitdiff
path: root/ext/manifest.json
blob: e95cc4963e121f96b6a501358d90356daecb5fc3 (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
{
    "manifest_version": 2,
    "name": "Yomichan",
    "version": "1.3.5",

    "description": "Japanese dictionary with Anki integration",
    "icons": {"16": "mixed/img/icon16.png", "48": "mixed/img/icon48.png", "128": "mixed/img/icon128.png"},
    "browser_action": {
        "default_icon": {"19": "mixed/img/icon19.png", "38": "mixed/img/icon38.png"},
        "default_popup": "bg/context.html"
    },

    "author": "Alex Yatskov",
    "background": {"page": "bg/background.html"},
    "content_scripts": [{
        "matches": ["http://*/*", "https://*/*", "file://*/*"],
        "js": [
            "fg/js/api.js",
            "fg/js/document.js",
            "fg/js/popup.js",
            "fg/js/source.js",
            "fg/js/util.js",
            "fg/js/frontend.js"
        ],
        "css": ["fg/css/client.css"],
        "all_frames": true
    }],
    "minimum_chrome_version": "57.0.0.0",
    "options_ui": {
        "page": "bg/settings.html"
    },
    "permissions": [
        "<all_urls>",
        "storage",
        "clipboardWrite"
    ],
    "commands": {
        "toggle": {
            "suggested_key": {
                "default": "Alt+Delete"
            },
            "description": "Toggle text scanning"
        },
        "search": {
            "suggested_key": {
                "default": "Alt+Insert"
            },
            "description": "Open search window"
        }
    },
    "web_accessible_resources": ["fg/float.html"],
    "applications": {
        "gecko": {
            "id": "yomichan-live@foosoft.net",
            "strict_min_version": "52.0",
            "update_url": "https://foosoft.net/projects/yomichan/dl/updates.json"
        }
    },
    "sandbox": {
        "pages": ["sb/sandbox.html"]
    }
}