Dictionary

Select a word on the webpage and open popup to instantly look up in the dictionary

什麼是Dictionary?

Dictionary是由SandeepKrSuman開發的Chrome擴展程式,該擴展的主要功能是“Select a word on the webpage and open popup to instantly look up in the dictionary”。

擴展截圖

screenshot
screenshot

下載Dictionary擴展crx文件

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

擴展使用說明

                        It is unconventional to always open a new tab to lookup for a word's meaning while you are reading your favorite blog or when you are simply browsing and you come across a word you want to know about. This extension is here to rescue. Select a word you want to look at and click on the extension button at the top and a beautiful popup will appear with the word definition and example. Isn't this cool and conventional? Install this extension and find word definitions on the go. [Open Source]                    

擴展基本資訊

名稱 Dictionary Dictionary
ID dlapopclhkmhhkmjhhaloapiiepbbnii
官方網址 https://chromewebstore.google.com/detail/dictionary/dlapopclhkmhhkmjhhaloapiiepbbnii
簡介 Select a word on the webpage and open popup to instantly look up in the dictionary
檔案大小 289 KB
安裝次數 17
目前版本 1.2.1
更新時間 2023-07-23
上架時間 2021-08-24
評分 5.00/5 共 1 次評分
開發者 SandeepKrSuman
電子郵箱 [email protected]
付費類型 free
擴展官網 https://github.com/SandeepKrSuman/dictionary-extension
說明頁面URL https://github.com/SandeepKrSuman/dictionary-extension/issues
隱私政策頁面URL https://github.com/SandeepKrSuman/dictionary-extension/blob/master/PRIVACY.md
支援的語言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Dictionary",
    "version": "1.2.1",
    "action": {
        "default_icon": {
            "16": "assets\/icon16.png",
            "24": "assets\/icon24.png",
            "32": "assets\/icon32.png"
        },
        "default_title": "Dictionary",
        "default_popup": "popup\/popup.html"
    },
    "description": "Select a word on the webpage and open popup to instantly look up in the dictionary",
    "icons": {
        "16": "assets\/icon16.png",
        "48": "assets\/icon48.png",
        "128": "assets\/icon128.png"
    },
    "author": "SandeepKrSuman",
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "permissions": [
        "activeTab"
    ]
}