Custom Dictionary

Store words and their definitions, and highlight them on websites

¿Qué es Custom Dictionary?

Custom Dictionary es una extensión de Chrome desarrollada por Riki, y su función principal es "Store words and their definitions, and highlight them on websites".

Capturas de Pantalla de la Extensión

screenshot
screenshot
screenshot
screenshot
screenshot

Descargar Archivo CRX de la Extensión Custom Dictionary

Descarga archivos de extensión Custom Dictionary en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        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.                    

Información Básica de la Extensión

Nombre Custom Dictionary Custom Dictionary
ID gpenoconcglejhmajbjgajimkdpmcogg
URL Oficial https://chromewebstore.google.com/detail/custom-dictionary/gpenoconcglejhmajbjgajimkdpmcogg
Descripción Store words and their definitions, and highlight them on websites
Tamaño del Archivo 44.67 KB
Cantidad de Instalaciones 55
Versión Actual 1.2.2
Última Actualización 2022-05-12
Fecha de Publicación 2022-04-25
Desarrollador Riki
Correo electrónico [email protected]
Tipo de Pago free
Sitio Web de la Extensión https://github.com/rikilele/custom-dict-chrome
Idiomas Soportados 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"
}