mirigana
Adding furigana to kanji on Twitter
什么是mirigana?
mirigana是由Larvata开发的Chrome扩展程序,该扩展的主要功能是“Adding furigana to kanji on Twitter”。
扩展截图
下载mirigana扩展crx文件
下载mirigana扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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.
扩展基本信息
名称 | mirigana |
ID | hbekfodhcnfpkmoeaijgbamedofonjib |
官方URL | https://chromewebstore.google.com/detail/mirigana/hbekfodhcnfpkmoeaijgbamedofonjib |
简介 | Adding furigana to kanji on Twitter |
文件大小 | 17.04 MB |
安装次数 | 10,000 |
当前版本 | 1.4.0 |
更新时间 | 2023-08-22 |
上架时间 | 2020-06-17 |
评分 | 4.84/5 共37次评分 |
开发者 | Larvata |
电子邮箱 | [email protected] |
付费类型 | free |
扩展官网 | https://twitter.com/ctx_mirigana |
支持的语言 | 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" ] } |