Instant Dictionary
View definition in both English and Chinese as you browse the web.
Hvad er Instant Dictionary?
Instant Dictionary er en Chrome-udvidelse udviklet af Peter Pi, og dens hovedfunktion er "View definition in both English and Chinese as you browse the web.".
Udvidelsesskærmbilleder
Download Instant Dictionary-udvidelses-CRX-fil
Download Instant Dictionary-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
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æggende oplysninger om udvidelsen
Navn | |
ID | hjpcapcphfbomgjkghdiiogelgikcmpa |
Officiel URL | https://chrome.google.com/webstore/detail/instant-dictionary/hjpcapcphfbomgjkghdiiogelgikcmpa |
Beskrivelse | View definition in both English and Chinese as you browse the web. |
Filstørrelse | 696 KB |
Antal Installationer | 121 |
Nuværende Version | 1.0.6 |
Senest Opdateret | 2022-01-08 |
Udgivelsesdato | 2020-04-18 |
Bedømmelse | 5.00/5 Samlet 1 Bedømmelser |
Udvikler | Peter Pi |
[email protected] | |
Betalingsmetode | free |
Understøttede Sprog | 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" ] } |