summaryrefslogtreecommitdiff
path: root/ext/manifest.json
diff options
context:
space:
mode:
authorAlex Yatskov <alex@foosoft.net>2017-08-17 19:39:32 -0700
committerAlex Yatskov <alex@foosoft.net>2017-08-17 19:39:32 -0700
commit39fbabfe626e7ae2c2e0c1dd45bda33dd5dab66c (patch)
tree334bc2282389c910ed9f7d724458b6d8b650311a /ext/manifest.json
parent65c100fe16c4829971055da384da90b1a1cddcd5 (diff)
parent7586572fbaab7de698ec13f8712cc95e24ab6273 (diff)
Merge branch 'master' into firefox-amo
Diffstat (limited to 'ext/manifest.json')
-rw-r--r--ext/manifest.json21
1 files changed, 11 insertions, 10 deletions
diff --git a/ext/manifest.json b/ext/manifest.json
index 22a7f342..94182896 100644
--- a/ext/manifest.json
+++ b/ext/manifest.json
@@ -1,13 +1,13 @@
{
"manifest_version": 2,
"name": "Yomichan",
- "version": "1.2.0",
+ "version": "1.3.0",
"description": "Japanese dictionary with Anki integration",
"icons": {"16": "mixed/img/icon16.png", "48": "mixed/img/icon48.png", "128": "mixed/img/icon128.png"},
"browser_action": {
"default_icon": {"19": "mixed/img/icon19.png", "38": "mixed/img/icon38.png"},
- "default_popup": "bg/popup.html"
+ "default_popup": "bg/context.html"
},
"author": "Alex Yatskov",
@@ -15,17 +15,18 @@
"content_scripts": [{
"matches": ["http://*/*", "https://*/*", "file://*/*"],
"js": [
- "fg/js/util.js",
- "fg/js/source-range.js",
- "fg/js/source-element.js",
+ "fg/js/api.js",
+ "fg/js/document.js",
"fg/js/popup.js",
- "fg/js/driver.js"
+ "fg/js/source.js",
+ "fg/js/util.js",
+ "fg/js/frontend.js"
],
"css": ["fg/css/client.css"]
}],
- "minimum_chrome_version": "45.0.0.0",
+ "minimum_chrome_version": "57.0.0.0",
"options_ui": {
- "page": "bg/options.html"
+ "page": "bg/settings.html"
},
"permissions": [
"<all_urls>",
@@ -46,11 +47,11 @@
"description": "Open search window"
}
},
- "web_accessible_resources": ["fg/frame.html"],
+ "web_accessible_resources": ["fg/float.html"],
"applications": {
"gecko": {
"id": "alex@foosoft.net",
- "strict_min_version": "51.0"
+ "strict_min_version": "52.0"
}
}
}