Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/moses-smt/mosesdecoder.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'contrib/goshen-chrome/manifest.json')
-rw-r--r--contrib/goshen-chrome/manifest.json29
1 files changed, 29 insertions, 0 deletions
diff --git a/contrib/goshen-chrome/manifest.json b/contrib/goshen-chrome/manifest.json
new file mode 100644
index 000000000..0bea70ab2
--- /dev/null
+++ b/contrib/goshen-chrome/manifest.json
@@ -0,0 +1,29 @@
+{
+ "manifest_version": 2,
+
+ "name": "Goshen Web Translator",
+ "description": "Translate entire webpages with a casmacat-moses backend",
+ "version": "1.0",
+
+ "browser_action": {
+ "default_icon": "icon.png",
+ "default_popup": "popup/popup.html"
+ },
+ "permissions": [
+ "activeTab",
+ "storage",
+ "https://ajax.googleapis.com/"
+ ],
+ "options_page" : "options/index.html",
+
+ "content_scripts": [{
+ "matches": ["http://*/*", "https://*/*", "file:///*"],
+ "css": ["onpage/onpage.css"],
+ "js": [
+ "onpage/onpage.js",
+ "onpage/goshen.js",
+ "onpage/chromegoshen.js"
+ ],
+ "all_frames": true
+ }]
+}