mirror of
https://github.com/moses-smt/mosesdecoder.git
synced 2024-12-28 14:32:38 +03:00
30 lines
721 B
JSON
30 lines
721 B
JSON
{
|
|
"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
|
|
}]
|
|
}
|