Tibetan Dictionary

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

Co je Tibetan Dictionary?

Tibetan Dictionary je rozšíření Chrome vyvinuté Kharag Edition, a jeho hlavní funkcí je „Select a word on the webpage and open popup to look up in the dictionary“.

Snímky obrazovky rozšíření

screenshot
screenshot

Stáhnout soubor CRX rozšíření Tibetan Dictionary

Stáhněte si soubory rozšíření Tibetan Dictionary ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

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

Základní Informace o Rozšíření

Název Tibetan Dictionary Tibetan Dictionary
ID adfffbhmkignepdggmlpojjplehfcnma
Oficiální URL https://chromewebstore.google.com/detail/tibetan-dictionary/adfffbhmkignepdggmlpojjplehfcnma
Popis Select a word on the webpage and open popup to look up in the dictionary
Velikost souboru 2.43 MB
Počet instalací 47
Aktuální Verze 1.0.1
Poslední Aktualizace 2022-08-07
Datum Vydání 2022-08-02
Hodnocení 5.00/5 Celkem 4 Hodnocení
Vývojář Kharag Edition
E-mail [email protected]
Typ Platby free
Webové stránky Rozšíření https://github.com/CodingWithTashi/tibetan_dictionary_chrome_extension
URL Stránky Nápovědy https://github.com/CodingWithTashi/tibetan_dictionary_chrome_extension/issues
Podporované Jazyky 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"
    }
}