My Dictionary

Get definition or translation of the selected word(s) in popup (multiple choices)

什麼是My Dictionary?

My Dictionary是由HardeepTheDev開發的Chrome擴展程式,該擴展的主要功能是“Get definition or translation of the selected word(s) in popup (multiple choices)”。

擴展截圖

screenshot
screenshot
screenshot
screenshot
screenshot

下載My Dictionary擴展crx文件

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

擴展使用說明

                        NOTE: A new and improved extension is available.

https://chrome.google.com/webstore/detail/lookup-in-popup/akaefbhdlppmfdecoakjogglbjgacdhm


Get definition or translation of selected words in popup, you can choose from multiple dictionaries, add new dictionaries, add websites that are not dictionaries, for more information watch the demo video https://youtu.be/kOOT5MK76UM

Default shortcut: 
- Alt+m on Windows
- Option+m on Mac

Github: https://github.com/harry-private/my_dictionary

CHANGELOG

https://github.com/harry-private/my_dictionary/blob/master/CHANGELOG.md                    

擴展基本資訊

名稱 My Dictionary My Dictionary
ID dlmmgckeognpojabkkcablldnlfnfgpo
官方網址 https://chromewebstore.google.com/detail/my-dictionary/dlmmgckeognpojabkkcablldnlfnfgpo
簡介 Get definition or translation of the selected word(s) in popup (multiple choices)
檔案大小 108 KB
安裝次數 817
目前版本 1.0.01
更新時間 2021-03-09
上架時間 2020-06-20
評分 4.38/5 共 13 次評分
開發者 HardeepTheDev
電子郵箱 [email protected]
付費類型 free
擴展官網 https://github.com/harry-private/my_dictionary
支援的語言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "My Dictionary",
    "description": "Get definition or translation of the selected word(s) in popup (multiple choices)",
    "version": "1.0.01",
    "permissions": [
        "storage",
        "webRequest",
        "webRequestBlocking",
        ""
    ],
    "background": {
        "scripts": [
            "data\/internal_libs\/dictionaries_data.js",
            "data\/background\/background.js"
        ],
        "persistent": true
    },
    "browser_action": {
        "default_icon": "data\/icons\/icon16.png",
        "default_title": "My Dictionary",
        "default_popup": "data\/options\/dictionary_for_menu_bar\/dictionary_for_menu_bar.html"
    },
    "options_ui": {
        "page": "data\/options\/options.html",
        "open_in_tab": true
    },
    "icons": {
        "16": "data\/icons\/icon16.png",
        "48": "data\/icons\/icon48.png",
        "128": "data\/icons\/icon128.png"
    },
    "web_accessible_resources": [
        "data\/icons\/icon_original.png",
        "data\/iframe\/iframe.html",
        "data\/icons\/loading.gif"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "data\/content_scripts\/index.js"
            ],
            "css": [
                "data\/content_scripts\/index.css"
            ],
            "all_frames": true
        }
    ],
    "commands": {
        "_execute_browser_action": {
            "suggested_key": {
                "default": "Alt+M"
            },
            "description": "Activate the extension"
        }
    }
}