Adict - Instant Dictionary Lookup

This extension allows you to easily search for translations of phrases in English, Polish, German, Spanish and French

什么是Adict - Instant Dictionary Lookup?

Adict - Instant Dictionary Lookup是由relte开发的Chrome扩展程序,该扩展的主要功能是“This extension allows you to easily search for translations of phrases in English, Polish, German, Spanish and French”。

扩展截图

screenshot

下载Adict - Instant Dictionary Lookup扩展crx文件

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

扩展使用说明

                        This extension allows you to easily look up a phrase in English, Polish, German, Spanish or French holding ALT and double clicking or with a trigger button. You can choose one of the four available dictionaries: dictionary.com (EN), merriam-webster.com (EN), diki.pl (EN/PL) and and bab.la (EN, PL, DE, ES, FR).

IMPORTANT: The extension will not work in tabs that were open prior to installation, such tabs must be refreshed. Besides, note that all extensions are disabled on Chrome Web Store pages (including this page).                    

扩展基本信息

名称 Adict - Instant Dictionary Lookup Adict - Instant Dictionary Lookup
ID npehaobgogknjhoglakcpbfbhfdgennf
官方URL https://chromewebstore.google.com/detail/adict-instant-dictionary/npehaobgogknjhoglakcpbfbhfdgennf
简介 This extension allows you to easily search for translations of phrases in English, Polish, German, Spanish and French
文件大小 48.35 KB
安装次数 288
当前版本 0.4.0
更新时间 2019-07-02
上架时间 2019-07-02
评分 3.67/5 共3次评分
开发者 relte
电子邮箱 [email protected]
付费类型 free
支持的语言 en,pl
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "__MSG_extension_name__",
    "description": "__MSG_extension_description__",
    "default_locale": "en",
    "version": "0.4.0",
    "applications": {
        "gecko": {
            "id": "[email protected]"
        }
    },
    "icons": {
        "16": "icons\/main16.png",
        "32": "icons\/main32.png",
        "48": "icons\/main48.png",
        "96": "icons\/main96.png",
        "128": "icons\/main128.png"
    },
    "background": {
        "scripts": [
            "lib\/browser-polyfill.js",
            "storage.js",
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "all_frames": true,
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "lib\/browser-polyfill.js",
                "storage.js",
                "popup\/popup.js"
            ],
            "css": [
                "popup\/popup.css"
            ]
        },
        {
            "all_frames": true,
            "matches": [
                "https:\/\/www.dictionary.com\/*",
                "https:\/\/www.merriam-webster.com\/*",
                "https:\/\/www.diki.pl\/*",
                "https:\/\/*.bab.la\/*"
            ],
            "js": [
                "dictionary.js"
            ]
        },
        {
            "all_frames": true,
            "matches": [
                "https:\/\/www.dictionary.com\/*addon=true*"
            ],
            "css": [
                "popup\/styles\/dictionary_com.css"
            ]
        },
        {
            "all_frames": true,
            "matches": [
                "https:\/\/www.merriam-webster.com\/*addon=true*"
            ],
            "css": [
                "popup\/styles\/merriam_webster.css"
            ]
        },
        {
            "all_frames": true,
            "matches": [
                "https:\/\/www.diki.pl\/*addon=true*"
            ],
            "css": [
                "popup\/styles\/diki.css"
            ]
        },
        {
            "all_frames": true,
            "matches": [
                "https:\/\/*.bab.la\/*addon=true*"
            ],
            "css": [
                "popup\/styles\/bab_la.css"
            ]
        }
    ],
    "permissions": [
        "storage",
        "webRequest",
        "webRequestBlocking",
        ""
    ],
    "browser_action": {
        "default_icon": {
            "16": "icons\/main16.png",
            "32": "icons\/main32.png",
            "48": "icons\/main48.png",
            "96": "icons\/main96.png",
            "128": "icons\/main128.png"
        },
        "default_title": "Adict",
        "default_popup": "menu\/menu.html"
    }
}