Instant Dictionary

View definition in both English and Chinese as you browse the web.

Co to jest Instant Dictionary?

Instant Dictionary to rozszerzenie Chrome opracowane przez Peter Pi, a jego główną funkcją jest „View definition in both English and Chinese as you browse the web.”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Instant Dictionary

Pobierz pliki rozszerzeń Instant 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

                        IMPORTANT:
 - The chrome extension will not work in tabs that were open prior to installation. After installation, either reload your open tabs or restart Chrome.

Instant Dictionary helps to make the translation become more convenient.

Simply highlight the word you don't understand and see the definition in English and Chinese without going back and forth on tabs.                    

Podstawowe informacje o rozszerzeniu

Nazwa Instant Dictionary Instant Dictionary
ID hjpcapcphfbomgjkghdiiogelgikcmpa
Oficjalny URL https://chrome.google.com/webstore/detail/instant-dictionary/hjpcapcphfbomgjkghdiiogelgikcmpa
Opis View definition in both English and Chinese as you browse the web.
Rozmiar pliku 696 KB
Liczba instalacji 121
Aktualna Wersja 1.0.6
Ostatnia Aktualizacja 2022-01-08
Data Publikacji 2020-04-18
Ocena 5.00/5 Łącznie 1 Oceny
Deweloper Peter Pi
E-mail [email protected]
Typ Płatności free
Obsługiwane Języki en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Instant Dictionary",
    "version": "1.0.6",
    "description": "View definition in both English and Chinese as you browse the web.",
    "author": "Peter Pi",
    "icons": {
        "128": "icon_128.png"
    },
    "browser_action": {
        "default_icon": "icon.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "css": [
                "Styles.css"
            ],
            "js": [
                "content.js",
                "jquery-3.4.1.min.js"
            ]
        }
    ],
    "permissions": [
        "activeTab",
        "storage"
    ]
}