blob: 4a893ceba2618282d11a4709b40d8c4fabe89a8a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
{
"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",
"content_scripts": [{
"matches": ["*://*/*"],
"js": ["api.js", "util.js", "client.js"],
"css": ["client.css"]
}]
}
|