Instant Dictionary

View definition in both English and Chinese as you browse the web.

什麼是Instant Dictionary?

Instant Dictionary是由Peter Pi開發的Chrome擴展程式,該擴展的主要功能是“View definition in both English and Chinese as you browse the web.”。

擴展截圖

screenshot

下載Instant Dictionary擴展crx文件

下載Instant Dictionary擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        IMPORTANT:
 - The chrome extension will not work in tabs that were open prior to installation. After installation, either reload your open tabs or restart Chrome.

Instant Dictionary helps to make the translation become more convenient.

Simply highlight the word you don't understand and see the definition in English and Chinese without going back and forth on tabs.                    

擴展基本資訊

名稱 Instant Dictionary Instant Dictionary
ID hjpcapcphfbomgjkghdiiogelgikcmpa
官方網址 https://chrome.google.com/webstore/detail/instant-dictionary/hjpcapcphfbomgjkghdiiogelgikcmpa
簡介 View definition in both English and Chinese as you browse the web.
檔案大小 696 KB
安裝次數 121
目前版本 1.0.6
更新時間 2022-01-08
上架時間 2020-04-18
評分 5.00/5 共 1 次評分
開發者 Peter Pi
電子郵箱 [email protected]
付費類型 free
支援的語言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Instant Dictionary",
    "version": "1.0.6",
    "description": "View definition in both English and Chinese as you browse the web.",
    "author": "Peter Pi",
    "icons": {
        "128": "icon_128.png"
    },
    "browser_action": {
        "default_icon": "icon.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "css": [
                "Styles.css"
            ],
            "js": [
                "content.js",
                "jquery-3.4.1.min.js"
            ]
        }
    ],
    "permissions": [
        "activeTab",
        "storage"
    ]
}