Custom Dictionary

Store words and their definitions, and highlight them on websites

什麼是Custom Dictionary?

Custom Dictionary是由Riki開發的Chrome擴展程式,該擴展的主要功能是“Store words and their definitions, and highlight them on websites”。

擴展截圖

screenshot
screenshot
screenshot
screenshot
screenshot

下載Custom Dictionary擴展crx文件

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

擴展使用說明

                        This highly performant chrome extension allows you to keep track of a custom dictionary of words. Words will be highlighted on web pages, and their definitions will appear as tooltips when hovered over.                    

擴展基本資訊

名稱 Custom Dictionary Custom Dictionary
ID gpenoconcglejhmajbjgajimkdpmcogg
官方網址 https://chromewebstore.google.com/detail/custom-dictionary/gpenoconcglejhmajbjgajimkdpmcogg
簡介 Store words and their definitions, and highlight them on websites
檔案大小 44.67 KB
安裝次數 55
目前版本 1.2.2
更新時間 2022-05-12
上架時間 2022-04-25
開發者 Riki
電子郵箱 [email protected]
付費類型 free
擴展官網 https://github.com/rikilele/custom-dict-chrome
支援的語言 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Custom Dictionary",
    "version": "1.2.2",
    "action": {
        "default_icon": {
            "16": "icons\/16.png",
            "48": "icons\/48.png",
            "128": "icons\/128.png"
        },
        "default_title": "Custom Dictionary",
        "default_popup": "popup\/popup.html"
    },
    "description": "Store words and their definitions, and highlight them on websites",
    "icons": {
        "16": "icons\/16.png",
        "48": "icons\/48.png",
        "128": "icons\/128.png"
    },
    "author": "Riki Singh Khorana",
    "background": {
        "service_worker": "background\/background.js"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "contentScript\/contentScript.js"
            ],
            "css": [
                "contentScript\/contentScript.css"
            ],
            "match_about_blank": true
        }
    ],
    "offline_enabled": true,
    "options_page": "settings\/settings.html",
    "permissions": [
        "storage",
        "contextMenus",
        "tabs"
    ],
    "short_name": "Custom Dict"
}