Instant Dictionary

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

Vad är Instant Dictionary?

Instant Dictionary är en Chrome-tillägg utvecklad av Peter Pi, och dess huvudfunktion är "View definition in both English and Chinese as you browse the web.".

Tilläggsskärmbilder

screenshot

Ladda ner Instant Dictionary-förlängningens CRX-fil

Ladda ner Instant Dictionary-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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.                    

Grundläggande Information om Tillägg

Namn Instant Dictionary Instant Dictionary
ID hjpcapcphfbomgjkghdiiogelgikcmpa
Officiell webbadress https://chrome.google.com/webstore/detail/instant-dictionary/hjpcapcphfbomgjkghdiiogelgikcmpa
Beskrivning View definition in both English and Chinese as you browse the web.
Filstorlek 696 KB
Antal Installationer 121
Aktuell Version 1.0.6
Senast Uppdaterad 2022-01-08
Publiceringsdatum 2020-04-18
Betyg 5.00/5 Totalt 1 Betyg
Utvecklare Peter Pi
E-post [email protected]
Betalningssätt free
Stödda Språk 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"
    ]
}