mirigana

Adding furigana to kanji on Twitter

Was ist mirigana?

mirigana ist eine Chrome-Erweiterung, die von Larvata entwickelt wurde, und ihr Hauptmerkmal ist "Adding furigana to kanji on Twitter".

Erweiterungsscreenshots

screenshot
screenshot

mirigana-Erweiterungs-CRX-Datei herunterladen

Laden Sie mirigana-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        Mirigana helps you learn the pronunciation of Kanji by annotating the furigana in each tweet.

Note:
This extension only works on twitter.com.

Features:
1. You can choose builtin or online engine for parsing.
2. Add the furigana to the Kanji in each tweet.
3. You can adjust the furigana size and color in the popup page.
4. The furigana will also be added when you copy the text from a tweet.                    

Grundlegende Informationen zur Erweiterung

Name mirigana mirigana
ID hbekfodhcnfpkmoeaijgbamedofonjib
Offizielle URL https://chromewebstore.google.com/detail/mirigana/hbekfodhcnfpkmoeaijgbamedofonjib
Beschreibung Adding furigana to kanji on Twitter
Dateigröße 17.04 MB
Installationsanzahl 10,000
Aktuelle Version 1.4.0
Letztes Update 2023-08-22
Veröffentlichungsdatum 2020-06-17
Bewertung 4.84/5 Insgesamt 37 Bewertungen
Entwickler Larvata
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://twitter.com/ctx_mirigana
Unterstützte Sprachen en,zh-CN,zh-TW
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "mirigana",
    "version": "1.4.0",
    "default_locale": "en",
    "description": "__MSG_extension_description__",
    "icons": {
        "16": "icons\/action-icon-16.png",
        "48": "icons\/app-icon-48.png",
        "64": "icons\/app-icon-64.png",
        "128": "icons\/app-icon-128.png"
    },
    "background": {
        "service_worker": "background.js"
    },
    "action": {
        "default_icon": {
            "16": "icons\/action-icon-16.png",
            "48": "icons\/action-icon-48.png",
            "64": "icons\/action-icon-64.png",
            "128": "icons\/action-icon-128.png"
        },
        "default_popup": "components\/popup\/popup.html"
    },
    "options_ui": {
        "page": "components\/options\/options.html",
        "open_in_tab": false
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/twitter.com\/*",
                "https:\/\/tweetdeck.twitter.com\/*"
            ],
            "js": [
                "constants.js",
                "content_scripts\/console.js",
                "content_scripts\/setting-storage.js",
                "content_scripts\/common.js",
                "content_scripts\/miri.js",
                "content_scripts\/twitter.js"
            ]
        }
    ],
    "permissions": [
        "tabs",
        "storage"
    ]
}