Jisho To Anki
Adds buttons to Jisho.org that let you quickly add words into your Anki decks
Wat is Jisho To Anki?
Jisho To Anki is een Chrome-extensie ontwikkeld door ltsquigs, en de belangrijkste functie is "Adds buttons to Jisho.org that let you quickly add words into your Anki decks".
Extensie Screenshots
Download het CRX-bestand van de extensie Jisho To Anki
Download Jisho To Anki-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
A tool that makes it easy to quickly add words from Jisho.org into your Anki decks
Basisinformatie over de Extensie
Naam | Jisho To Anki |
ID | hffkcepgnkcinfdpnjlgcabfbbjikcgn |
Officiële URL | https://chromewebstore.google.com/detail/jisho-to-anki/hffkcepgnkcinfdpnjlgcabfbbjikcgn |
Beschrijving | Adds buttons to Jisho.org that let you quickly add words into your Anki decks |
Bestandsgrootte | 12.49 MB |
Aantal Installaties | 73 |
Huidige Versie | 1.0 |
Laatst Bijgewerkt | 2022-07-02 |
Publicatiedatum | 2022-07-02 |
Beoordeling | 1.00/5 Totaal 1 Beoordelingen |
Ontwikkelaar | ltsquigs |
[email protected] | |
Betalingswijze | free |
Extensiewebsite | https://github.com/LtSquigs/jisho-to-anki |
Ondersteunde Talen | 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\/*" ] } |