DuolingoFurigana
Extension to add Furigana to Duolingo's Kanji.
Hvad er DuolingoFurigana?
DuolingoFurigana er en Chrome-udvidelse udviklet af Cieric, og dens hovedfunktion er "Extension to add Furigana to Duolingo's Kanji.".
Udvidelsesskærmbilleder
Download DuolingoFurigana-udvidelses-CRX-fil
Download DuolingoFurigana-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
This simply adds Furigana over the sentences on Duolingo. Multiple modes exist now Kanji to Hiragana Kanji to Katakana All 2 romaji the tile aren't currently translated.
Grundlæggende oplysninger om udvidelsen
Navn | DuolingoFurigana |
ID | lgdghadmfbgkfennoblpoijobgbglomc |
Officiel URL | https://chromewebstore.google.com/detail/duolingofurigana/lgdghadmfbgkfennoblpoijobgbglomc |
Beskrivelse | Extension to add Furigana to Duolingo's Kanji. |
Filstørrelse | 29.7 MB |
Antal Installationer | 153 |
Nuværende Version | 0.2.2 |
Senest Opdateret | 2018-01-12 |
Udgivelsesdato | 2018-01-12 |
Bedømmelse | 3.80/5 Samlet 5 Bedømmelser |
Udvikler | Cieric |
[email protected] | |
Betalingsmetode | free |
Understøttede Sprog | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "DuolingoFurigana", "description": "Extension to add Furigana to Duolingo's Kanji.", "version": "0.2.2", "icons": { "256": "icon256.png", "128": "icon128.png" }, "browser_action": { "default_icon": "icon128.png", "default_popup": "popup.html" }, "permissions": [ "storage", "tabs", "*:\/\/www.duolingo.com\/practice", "*:\/\/www.duolingo.com\/skill\/*" ], "content_scripts": [ { "run_at": "document_end", "matches": [ "*:\/\/www.duolingo.com\/*" ], "js": [ "jquery.min.js", "kuroshiro.js", "main.js" ] } ], "web_accessible_resources": [ "dict\/base.dat.gz", "dict\/cc.dat.gz", "dict\/check.dat.gz", "dict\/tid.dat.gz", "dict\/tid_map.dat.gz", "dict\/tid_pos.dat.gz", "dict\/unk.dat.gz", "dict\/unk_char.dat.gz", "dict\/unk_compat.dat.gz", "dict\/unk_invoke.dat.gz", "dict\/unk_map.dat.gz", "dict\/unk_pos.dat.gz" ] } |