diff options
author | Alex Yatskov <alex@foosoft.net> | 2016-07-02 19:51:13 -0700 |
---|---|---|
committer | Alex Yatskov <alex@foosoft.net> | 2016-07-02 19:51:13 -0700 |
commit | 30585892b812dbf19c15bd010d6032fffa204c0d (patch) | |
tree | 206927761682b43582bee8b84d50ffa7a6255485 /ext/manifest.json | |
parent | bd89db4ec5a55e7b08b27a3d736a32e859084aff (diff) | |
parent | 261914328fb8b72d8984a21eaf7670a01f1da2c6 (diff) |
Merge branch 'master' of https://github.com/FooSoft/yomichan-chrome
Diffstat (limited to 'ext/manifest.json')
-rw-r--r-- | ext/manifest.json | 13 |
1 files changed, 10 insertions, 3 deletions
diff --git a/ext/manifest.json b/ext/manifest.json index 3cb13480..70ce4a9a 100644 --- a/ext/manifest.json +++ b/ext/manifest.json @@ -15,8 +15,10 @@ "css": ["fg/css/client.css"] }], "minimum_chrome_version": "45.0.0.0", - "options_page": "bg/options.html", - "permissions": ["storage"], + "options_ui": { + "page": "bg/options.html" + }, + "permissions": ["*://127.0.0.1/*", "storage"], "web_accessible_resources": [ "fg/css/frame.css", "fg/img/add_kanji.png", @@ -26,5 +28,10 @@ "fg/js/frame.js", "fg/ttf/kanji-stroke-orders.ttf", "fg/ttf/vl-gothic-regular.ttf" - ] + ], + "applications": { + "gecko": { + "id": "yomichan-gecko@example.com" + } + } } |