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
官方URL 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"
}