Custom Dictionary

Store words and their definitions, and highlight them on websites

Co je Custom Dictionary?

Custom Dictionary je rozšíření Chrome vyvinuté Riki, a jeho hlavní funkcí je „Store words and their definitions, and highlight them on websites“.

Snímky obrazovky rozšíření

screenshot
screenshot
screenshot
screenshot
screenshot

Stáhnout soubor CRX rozšíření Custom Dictionary

Stáhněte si soubory rozšíření Custom Dictionary ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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.                    

Základní Informace o Rozšíření

Název Custom Dictionary Custom Dictionary
ID gpenoconcglejhmajbjgajimkdpmcogg
Oficiální URL https://chromewebstore.google.com/detail/custom-dictionary/gpenoconcglejhmajbjgajimkdpmcogg
Popis Store words and their definitions, and highlight them on websites
Velikost souboru 44.67 KB
Počet instalací 55
Aktuální Verze 1.2.2
Poslední Aktualizace 2022-05-12
Datum Vydání 2022-04-25
Vývojář Riki
E-mail [email protected]
Typ Platby free
Webové stránky Rozšíření https://github.com/rikilele/custom-dict-chrome
Podporované Jazyky 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"
}