Custom Dictionary

Store words and their definitions, and highlight them on websites

Was ist Custom Dictionary?

Custom Dictionary ist eine Chrome-Erweiterung, die von Riki entwickelt wurde, und ihr Hauptmerkmal ist "Store words and their definitions, and highlight them on websites".

Erweiterungsscreenshots

screenshot
screenshot
screenshot
screenshot
screenshot

Custom Dictionary-Erweiterungs-CRX-Datei herunterladen

Laden Sie Custom Dictionary-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name Custom Dictionary Custom Dictionary
ID gpenoconcglejhmajbjgajimkdpmcogg
Offizielle URL https://chromewebstore.google.com/detail/custom-dictionary/gpenoconcglejhmajbjgajimkdpmcogg
Beschreibung Store words and their definitions, and highlight them on websites
Dateigröße 44.67 KB
Installationsanzahl 55
Aktuelle Version 1.2.2
Letztes Update 2022-05-12
Veröffentlichungsdatum 2022-04-25
Entwickler Riki
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://github.com/rikilele/custom-dict-chrome
Unterstützte Sprachen 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"
}