mirigana

mirigana

Adding furigana to kanji on Twitter

Merlin
Additional files are visible only to premium users

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"
  ]
}