Jisho To Anki
Adds buttons to Jisho.org that let you quickly add words into your Anki decks
Jisho To Ankiとは何ですか?
Jisho To Ankiはltsquigsによって開発されたChromeの拡張機能で、その主な機能は「Adds buttons to Jisho.org that let you quickly add words into your Anki decks」です。
拡張機能のスクリーンショット
Jisho To Anki拡張機能のCRXファイルをダウンロード
Jisho To Anki拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
A tool that makes it easy to quickly add words from Jisho.org into your Anki decks
拡張機能の基本情報
名前 | Jisho To Anki |
ID | hffkcepgnkcinfdpnjlgcabfbbjikcgn |
公式URL | https://chromewebstore.google.com/detail/jisho-to-anki/hffkcepgnkcinfdpnjlgcabfbbjikcgn |
説明 | Adds buttons to Jisho.org that let you quickly add words into your Anki decks |
ファイルサイズ | 12.49 MB |
インストール数 | 73 |
現在のバージョン | 1.0 |
最終更新日 | 2022-07-02 |
公開日 | 2022-07-02 |
評価 | 1.00/5 合計 1 レビュー |
開発者 | ltsquigs |
Eメール | [email protected] |
支払い方法 | free |
拡張機能のウェブサイト | https://github.com/LtSquigs/jisho-to-anki |
対応言語 | 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\/*" ] } |