summaryrefslogtreecommitdiff
path: root/ext/manifest.json
blob: a225faebbb42219a5fef8a51d5a8f9148252e882 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{
    "manifest_version": 2,
    "name":             "Yomichan",
    "description":      "Yomichan Extension",
    "version":          "0.0.1",

    "browser_action": {"default_icon": "icon.png"},
    "background":     {"page": "background.html"},

    "content_scripts": [{
        "matches": ["*://*/*"],
        "js":      ["content.js", "api.js"]
    }]
}