diff options
author | Alex Yatskov <FooSoft@users.noreply.github.com> | 2016-06-20 10:00:01 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-06-20 10:00:01 -0700 |
commit | 261914328fb8b72d8984a21eaf7670a01f1da2c6 (patch) | |
tree | f04b1ffd3e5d7fb9fa6047e9aeac8fde84aa4160 /ext/manifest.json | |
parent | b7901945b34cda8994f12950ce50024a6b028cee (diff) | |
parent | a9863de95e201c8e814ad7d6dacedae98b13748a (diff) |
Merge pull request #7 from ispedals/firefox
Firefox
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" + } + } } |