FuriKani
Removes furigana on websites based on your WaniKani level
Τι είναι το FuriKani;
Το FuriKani είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Lauchmelder, και η κύρια λειτουργία του είναι "Removes furigana on websites based on your WaniKani level".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης FuriKani
Λήψη αρχείων επέκτασης FuriKani σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
The simplest way to improve your Japanese reading experience if you are a WaniKani user. Supply the extension with a WaniKani API Token to automatically remove furigana on websites for any words you (should) know. Vocabulary is automatically synchronized with WaniKani whenever you level up. So if you keep doing your reviews and level up you should slowly see more and more of the furigana disappear from the web. This way you will be forced to read words you know from memory, while still allowing you to see the pronounciation of unknown vocabulary.
Βασικές Πληροφορίες Επέκτασης
Όνομα | FuriKani |
ID | lbjenjfljjnlkbdfbgmgcnkfnddaeccl |
Επίσημο URL | https://chromewebstore.google.com/detail/furikani/lbjenjfljjnlkbdfbgmgcnkfnddaeccl |
Περιγραφή | Removes furigana on websites based on your WaniKani level |
Μέγεθος Αρχείου | 53.34 KB |
Αριθμός Εγκαταστάσεων | 70 |
Τρέχουσα Έκδοση | 0.7 |
Τελευταία Ενημέρωση | 2022-04-02 |
Ημερομηνία Δημοσίευσης | 2022-03-21 |
Προγραμματιστής | Lauchmelder |
Ηλεκτρονικό ταχυδρομείο | [email protected] |
Τύπος Πληρωμής | free |
Υποστηριζόμενες Γλώσσες | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "FuriKani", "description": "Removes furigana on websites based on your WaniKani level", "version": "0.7", "icons": { "16": "res\/icon16.png", "48": "res\/icon48.png", "128": "res\/icon128.png" }, "manifest_version": 2, "browser_action": { "default_popup": "src\/popup.html" }, "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "js": [ "src\/content.js" ] } ], "background": { "scripts": [ "src\/background.js" ] }, "permissions": [ "storage" ] } |