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
Eメール [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"
}