Dictionary

Select a word on the webpage and open popup to instantly look up in the dictionary

¿Qué es Dictionary?

Dictionary es una extensión de Chrome desarrollada por SandeepKrSuman, y su función principal es "Select a word on the webpage and open popup to instantly look up in the dictionary".

Capturas de Pantalla de la Extensión

screenshot
screenshot

Descargar Archivo CRX de la Extensión Dictionary

Descarga archivos de extensión 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

                        It is unconventional to always open a new tab to lookup for a word's meaning while you are reading your favorite blog or when you are simply browsing and you come across a word you want to know about. This extension is here to rescue. Select a word you want to look at and click on the extension button at the top and a beautiful popup will appear with the word definition and example. Isn't this cool and conventional? Install this extension and find word definitions on the go. [Open Source]                    

Información Básica de la Extensión

Nombre Dictionary Dictionary
ID dlapopclhkmhhkmjhhaloapiiepbbnii
URL Oficial https://chromewebstore.google.com/detail/dictionary/dlapopclhkmhhkmjhhaloapiiepbbnii
Descripción Select a word on the webpage and open popup to instantly look up in the dictionary
Tamaño del Archivo 289 KB
Cantidad de Instalaciones 17
Versión Actual 1.2.1
Última Actualización 2023-07-23
Fecha de Publicación 2021-08-24
Calificación 5.00/5 Total de 1 Calificaciones
Desarrollador SandeepKrSuman
Correo electrónico [email protected]
Tipo de Pago free
Sitio Web de la Extensión https://github.com/SandeepKrSuman/dictionary-extension
URL de la Página de Ayuda https://github.com/SandeepKrSuman/dictionary-extension/issues
URL de la Página de Política de Privacidad https://github.com/SandeepKrSuman/dictionary-extension/blob/master/PRIVACY.md
Idiomas Soportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Dictionary",
    "version": "1.2.1",
    "action": {
        "default_icon": {
            "16": "assets\/icon16.png",
            "24": "assets\/icon24.png",
            "32": "assets\/icon32.png"
        },
        "default_title": "Dictionary",
        "default_popup": "popup\/popup.html"
    },
    "description": "Select a word on the webpage and open popup to instantly look up in the dictionary",
    "icons": {
        "16": "assets\/icon16.png",
        "48": "assets\/icon48.png",
        "128": "assets\/icon128.png"
    },
    "author": "SandeepKrSuman",
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "permissions": [
        "activeTab"
    ]
}