Instant Dictionary
View definition in both English and Chinese as you browse the web.
Was ist Instant Dictionary?
Instant Dictionary ist eine Chrome-Erweiterung, die von Peter Pi entwickelt wurde, und ihr Hauptmerkmal ist "View definition in both English and Chinese as you browse the web.".
Erweiterungsscreenshots
Instant Dictionary-Erweiterungs-CRX-Datei herunterladen
Laden Sie Instant Dictionary-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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.
Grundlegende Informationen zur Erweiterung
Name | |
ID | hjpcapcphfbomgjkghdiiogelgikcmpa |
Offizielle URL | https://chrome.google.com/webstore/detail/instant-dictionary/hjpcapcphfbomgjkghdiiogelgikcmpa |
Beschreibung | View definition in both English and Chinese as you browse the web. |
Dateigröße | 696 KB |
Installationsanzahl | 121 |
Aktuelle Version | 1.0.6 |
Letztes Update | 2022-01-08 |
Veröffentlichungsdatum | 2020-04-18 |
Bewertung | 5.00/5 Insgesamt 1 Bewertungen |
Entwickler | Peter Pi |
[email protected] | |
Zahlungsart | free |
Unterstützte Sprachen | 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" ] } |