Tibetan Dictionary

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

Co to jest Tibetan Dictionary?

Tibetan Dictionary to rozszerzenie Chrome opracowane przez Kharag Edition, a jego główną funkcją jest „Select a word on the webpage and open popup to look up in the dictionary”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot

Pobierz plik CRX rozszerzenia Tibetan Dictionary

Pobierz pliki rozszerzeń Tibetan Dictionary w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

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

Podstawowe informacje o rozszerzeniu

Nazwa Tibetan Dictionary Tibetan Dictionary
ID adfffbhmkignepdggmlpojjplehfcnma
Oficjalny URL https://chromewebstore.google.com/detail/tibetan-dictionary/adfffbhmkignepdggmlpojjplehfcnma
Opis Select a word on the webpage and open popup to look up in the dictionary
Rozmiar pliku 2.43 MB
Liczba instalacji 47
Aktualna Wersja 1.0.1
Ostatnia Aktualizacja 2022-08-07
Data Publikacji 2022-08-02
Ocena 5.00/5 Łącznie 4 Oceny
Deweloper Kharag Edition
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://github.com/CodingWithTashi/tibetan_dictionary_chrome_extension
Adres URL Strony Pomocy https://github.com/CodingWithTashi/tibetan_dictionary_chrome_extension/issues
Obsługiwane Języki 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"
    }
}