Jisho To Anki
Adds buttons to Jisho.org that let you quickly add words into your Anki decks
Cos'è Jisho To Anki?
Jisho To Anki è un'estensione di Chrome sviluppata da ltsquigs, e la sua funzione principale è "Adds buttons to Jisho.org that let you quickly add words into your Anki decks".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Jisho To Anki
Scarica i file di estensione Jisho To Anki 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
A tool that makes it easy to quickly add words from Jisho.org into your Anki decks
Informazioni di Base sull'Estensione
Nome | Jisho To Anki |
ID | hffkcepgnkcinfdpnjlgcabfbbjikcgn |
URL Ufficiale | https://chromewebstore.google.com/detail/jisho-to-anki/hffkcepgnkcinfdpnjlgcabfbbjikcgn |
Descrizione | Adds buttons to Jisho.org that let you quickly add words into your Anki decks |
Dimensione del File | 12.49 MB |
Conteggio Installazioni | 73 |
Versione Corrente | 1.0 |
Ultimo Aggiornamento | 2022-07-02 |
Data di Pubblicazione | 2022-07-02 |
Valutazione | 1.00/5 Totale 1 Valutazioni |
Sviluppatore | ltsquigs |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://github.com/LtSquigs/jisho-to-anki |
Lingue Supportate | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Jisho To Anki", "description": "Adds buttons to Jisho.org that let you quickly add words into your Anki decks", "version": "1.0", "content_scripts": [ { "matches": [ "https:\/\/jisho.org\/search\/*" ], "js": [ "jisho-to-anki.js" ] } ], "icons": { "16": "icon.png", "32": "icon.png", "48": "icon.png", "128": "icon.png" }, "options_ui": { "page": "options.html", "open_in_tab": true }, "web_accessible_resources": [ { "resources": [ "jmdict-slim", "sentences" ], "matches": [ "https:\/\/jisho.org\/*" ] } ], "permissions": [ "storage" ], "host_permissions": [ "*:\/\/localhost\/*" ] } |