blob: cbe1e04a895ca82ec8f34a171db2be31f588a9a0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
{
"manifest_version": 2,
"name": "Yomichan",
"description": "Yomichan Extension",
"version": "0.0.1",
"browser_action": {"default_icon": "icon.png"},
"background": {"page": "bg/background.html"},
"options_page": "bg/options.html",
"permissions": ["storage"],
"content_scripts": [{
"matches": ["*://*/*"],
"js": ["fg/js/api.js", "fg/js/util.js", "fg/js/client.js"],
"css": ["fg/css/client.css"]
}]
}
|