WordReference Translator

Chrome extension to allow quick access to www.wordreference.com.

什么是WordReference Translator?

WordReference Translator是由spassaro开发的Chrome扩展程序,该扩展的主要功能是“Chrome extension to allow quick access to www.wordreference.com.”。

扩展截图

screenshot

下载WordReference Translator扩展crx文件

下载WordReference Translator扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        Translate a word by:
    - Double clicking it and then clicking on the floating link.
    - Selecting the text to translate and using the context menu.
Support for the following languages:
    - English
    - Spanish
    - French
    - Portuguese
    - Italian
Settings page to change languages accessible from extensions list or by context menu.                    

扩展基本信息

名称 WordReference Translator WordReference Translator
ID cheajkjbaknihaobmnjmbphjphoahhlp
官方URL https://chromewebstore.google.com/detail/wordreference-translator/cheajkjbaknihaobmnjmbphjphoahhlp
简介 Chrome extension to allow quick access to www.wordreference.com.
文件大小 19.35 KB
安装次数 789
当前版本 1.0.5
更新时间 2018-02-10
上架时间 2018-02-09
开发者 spassaro
付费类型 free
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "WordReference Translator",
    "version": "1.0.5",
    "author": "Sebasti\u00e1n Passaro",
    "description": "Chrome extension to allow quick access to www.wordreference.com.",
    "homepage_url": "https:\/\/github.com\/spassarop\/wrtranslator\/tree\/refactor\/chrome",
    "icons": {
        "16": "icons\/wr-icon-16.png",
        "48": "icons\/wr-icon-48.png",
        "128": "icons\/wr-icon-128.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "wrtranslator.js"
            ],
            "css": [
                "wrtranslator.css"
            ]
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "browser_action": {
        "browser_style": true,
        "default_icon": "icons\/wr-icon-16.png",
        "default_title": "www.wordreference.com"
    },
    "options_ui": {
        "page": "options.html"
    },
    "permissions": [
        "storage",
        "contextMenus"
    ],
    "default_locale": "en"
}