IPA furigana

Looks up the readings for kanji words and inserts them as furigana

IPA furigana क्या है?

IPA furigana quro द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Looks up the readings for kanji words and inserts them as furigana"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में IPA furigana एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        A browser extension allowing the injection of phonetic annotations for Japanese text (furigana) on the fly. Uses the IPADIC Japanese dictionary.

* Works locally in your browser - no external server required
* Automatically detects pages where furigana insertion is possible
* Can switch between displaying the readings as hiragana, katakana or romaji
* Persistent mode - extension will add furigana to all pages automatically until turned off
* Customisable size and color for furigana
* Auto-start option: extension will be turned on automatically from browser startup
 
NEW in version 1.21:
* Minor bug fixes                    

एक्सटेंशन की मूल जानकारी

नाम IPA furigana IPA furigana
ID jnnbgnfnncobhklficfkdnclohaklifi
आधिकारिक URL https://chrome.google.com/webstore/detail/ipa-furigana/jnnbgnfnncobhklficfkdnclohaklifi
विवरण Looks up the readings for kanji words and inserts them as furigana
फ़ाइल का आकार 8.46 MB
स्थापना संख्या 300,000
वर्तमान संस्करण 1.21
अंतिम अपडेट 2019-03-08
प्रकाशन तिथि 2019-03-08
रेटिंग 4.43/5 कुल 202 रेटिंग्स
डेवलपर quro
भुगतान के प्रकार free
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_manifestExtName__",
    "version": "1.21",
    "manifest_version": 2,
    "background": {
        "scripts": [
            "lib\/jquery-2.0.2.js",
            "lib\/sprintf.min.js",
            "lib\/igo.min.js",
            "lib\/zip.min.js",
            "lib\/wanakana.min.js",
            "background.js",
            "lib\/diff.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "js": [
                "kanji_content_detect.js"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*",
                "file:\/\/*\/*"
            ]
        }
    ],
    "default_locale": "en",
    "description": "__MSG_manifestExtDescription__",
    "icons": {
        "16": "img\/furigana_active.png",
        "32": "img\/furigana_active.png",
        "48": "img\/furigana_active_48.png",
        "96": "img\/furigana_active_96.png",
        "128": "img\/furigana_active.png",
        "256": "img\/furigana_active.png"
    },
    "options_page": "user_cp\/options.html",
    "page_action": {
        "default_icon": {
            "38": "img\/icons\/furigana_inactive_76.png"
        },
        "default_title": "Toggle furigana"
    },
    "permissions": [
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        "file:\/\/*\/*",
        "activeTab",
        "tabs"
    ],
    "commands": {
        "toggle-furigana": {
            "suggested_key": {
                "default": "Alt+Shift+F",
                "mac": "Alt+Shift+F"
            },
            "description": "Toggle furigana"
        }
    }
}