Tibetan Dictionary

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

Cos'è Tibetan Dictionary?

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

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione Tibetan Dictionary

Scarica i file di estensione Tibetan 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

                        Simple Tibetan dictionary  plugin that let you look for word meaning by simply entering the word in textbox.                    

Informazioni di Base sull'Estensione

Nome Tibetan Dictionary Tibetan Dictionary
ID adfffbhmkignepdggmlpojjplehfcnma
URL Ufficiale https://chromewebstore.google.com/detail/tibetan-dictionary/adfffbhmkignepdggmlpojjplehfcnma
Descrizione Select a word on the webpage and open popup to look up in the dictionary
Dimensione del File 2.43 MB
Conteggio Installazioni 47
Versione Corrente 1.0.1
Ultimo Aggiornamento 2022-08-07
Data di Pubblicazione 2022-08-02
Valutazione 5.00/5 Totale 4 Valutazioni
Sviluppatore Kharag Edition
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/CodingWithTashi/tibetan_dictionary_chrome_extension
URL della Pagina di Aiuto https://github.com/CodingWithTashi/tibetan_dictionary_chrome_extension/issues
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Tibetan Dictionary",
    "description": "Select a word on the webpage and open popup to look up in the dictionary",
    "manifest_version": 3,
    "version": "1.0.1",
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content\/content.js"
            ],
            "css": [
                "content\/content.css"
            ]
        }
    ],
    "author": "KharagEdition",
    "action": {
        "default_icon": {
            "16": "assets\/icon16.png",
            "24": "assets\/icon24.png",
            "32": "assets\/icon32.png"
        },
        "default_popup": "popup\/popup.html"
    },
    "icons": {
        "16": "assets\/icon16.png",
        "48": "assets\/icon48.png",
        "128": "assets\/icon128.png"
    }
}