Custom Dictionary

Store words and their definitions, and highlight them on websites

Hvad er Custom Dictionary?

Custom Dictionary er en Chrome-udvidelse udviklet af Riki, og dens hovedfunktion er "Store words and their definitions, and highlight them on websites".

Udvidelsesskærmbilleder

screenshot
screenshot
screenshot
screenshot
screenshot

Download Custom Dictionary-udvidelses-CRX-fil

Download Custom Dictionary-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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.                    

Grundlæggende oplysninger om udvidelsen

Navn Custom Dictionary Custom Dictionary
ID gpenoconcglejhmajbjgajimkdpmcogg
Officiel URL https://chromewebstore.google.com/detail/custom-dictionary/gpenoconcglejhmajbjgajimkdpmcogg
Beskrivelse Store words and their definitions, and highlight them on websites
Filstørrelse 44.67 KB
Antal Installationer 55
Nuværende Version 1.2.2
Senest Opdateret 2022-05-12
Udgivelsesdato 2022-04-25
Udvikler Riki
E-mail [email protected]
Betalingsmetode free
Udvidelseswebsted https://github.com/rikilele/custom-dict-chrome
Understøttede Sprog 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"
}