扇贝单词图片搜索
背单词的时候,使用快捷键(默认为`i`)搜索当前单词对应的图片,帮助记忆
Cos'è 扇贝单词图片搜索?
扇贝单词图片搜索 è un'estensione di Chrome sviluppata da eric6356, e la sua funzione principale è "背单词的时候,使用快捷键(默认为`i`)搜索当前单词对应的图片,帮助记忆".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione 扇贝单词图片搜索
Scarica i file di estensione 扇贝单词图片搜索 in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
https://github.com/eric6356/shanbay-image/
欢迎来 github 提 issue,或者给我发邮件 Informazioni di Base sull'Estensione
| Nome | |
| ID | bdhjdejdchpjhaphknpklpfgdmggccme |
| URL Ufficiale | https://chromewebstore.google.com/detail/%E6%89%87%E8%B4%9D%E5%8D%95%E8%AF%8D%E5%9B%BE%E7%89%87%E6%90%9C%E7%B4%A2/bdhjdejdchpjhaphknpklpfgdmggccme |
| Descrizione | 背单词的时候,使用快捷键(默认为`i`)搜索当前单词对应的图片,帮助记忆 |
| Dimensione del File | 46.17 KB |
| Conteggio Installazioni | 47 |
| Versione Corrente | 1.1.1 |
| Ultimo Aggiornamento | 2016-11-02 |
| Data di Pubblicazione | 2016-11-02 |
| Valutazione | 5.00/5 Totale 2 Valutazioni |
| Sviluppatore | eric6356 |
| [email protected] | |
| Tipo di Pagamento | free |
| Sito Web dell'Estensione | https://github.com/eric6356/shanbay-image/ |
| Lingue Supportate | zh-CN |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "\u6247\u8d1d\u5355\u8bcd\u56fe\u7247\u641c\u7d22",
"description": "\u80cc\u5355\u8bcd\u7684\u65f6\u5019\uff0c\u4f7f\u7528\u5feb\u6377\u952e\uff08\u9ed8\u8ba4\u4e3a`i`\uff09\u641c\u7d22\u5f53\u524d\u5355\u8bcd\u5bf9\u5e94\u7684\u56fe\u7247\uff0c\u5e2e\u52a9\u8bb0\u5fc6",
"version": "1.1.1",
"content_scripts": [
{
"matches": [
"https:\/\/www.shanbay.com\/bdc\/review\/",
"https:\/\/www.shanbay.com\/review\/learning\/*"
],
"js": [
"main.js"
]
}
],
"background": {
"scripts": [
"background.js"
],
"persistent": false
},
"permissions": [
"declarativeContent",
"storage"
],
"page_action": {
"default_icon": "images\/icon19.png",
"default_popup": "popup\/popup.html"
},
"icons": {
"48": "images\/icon48.png",
"128": "images\/icon128.png"
}
} | |