Dictionary

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

Cos'è Dictionary?

Dictionary è un'estensione di Chrome sviluppata da SandeepKrSuman, e la sua funzione principale è "Select a word on the webpage and open popup to instantly look up in the dictionary".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione Dictionary

Scarica i file di estensione Dictionary in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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]                    

Informazioni di Base sull'Estensione

Nome Dictionary Dictionary
ID dlapopclhkmhhkmjhhaloapiiepbbnii
URL Ufficiale https://chromewebstore.google.com/detail/dictionary/dlapopclhkmhhkmjhhaloapiiepbbnii
Descrizione Select a word on the webpage and open popup to instantly look up in the dictionary
Dimensione del File 289 KB
Conteggio Installazioni 17
Versione Corrente 1.2.1
Ultimo Aggiornamento 2023-07-23
Data di Pubblicazione 2021-08-24
Valutazione 5.00/5 Totale 1 Valutazioni
Sviluppatore SandeepKrSuman
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/SandeepKrSuman/dictionary-extension
URL della Pagina di Aiuto https://github.com/SandeepKrSuman/dictionary-extension/issues
URL della Pagina della Politica sulla Privacy https://github.com/SandeepKrSuman/dictionary-extension/blob/master/PRIVACY.md
Lingue Supportate 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"
    ]
}