Custom Dictionary

Store words and their definitions, and highlight them on websites

Wat is Custom Dictionary?

Custom Dictionary is een Chrome-extensie ontwikkeld door Riki, en de belangrijkste functie is "Store words and their definitions, and highlight them on websites".

Extensie Screenshots

screenshot
screenshot
screenshot
screenshot
screenshot

Download het CRX-bestand van de extensie Custom Dictionary

Download Custom Dictionary-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam Custom Dictionary Custom Dictionary
ID gpenoconcglejhmajbjgajimkdpmcogg
Officiële URL https://chromewebstore.google.com/detail/custom-dictionary/gpenoconcglejhmajbjgajimkdpmcogg
Beschrijving Store words and their definitions, and highlight them on websites
Bestandsgrootte 44.67 KB
Aantal Installaties 55
Huidige Versie 1.2.2
Laatst Bijgewerkt 2022-05-12
Publicatiedatum 2022-04-25
Ontwikkelaar Riki
E-mail [email protected]
Betalingswijze free
Extensiewebsite https://github.com/rikilele/custom-dict-chrome
Ondersteunde Talen 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"
}