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

manifest.json « goshen-chrome « contrib - github.com/moses-smt/mosesdecoder.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 0bea70ab235da0620ba56ff15c92277e688adf0a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
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
    }]
}