Furigana

Furigana

Add furigana

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "__MSG_extensionName__",
  "version": "1.0.3",
  "description": "Add furigana",
  "icons": {
    "38": "icons/icon.png"
  },
  "web_accessible_resources": [
    "dict/*.dat"
  ],
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "js": [
        "dist/content.js"
      ]
    }
  ],
  "default_locale": "en",
  "browser_action": {
    "default_icon": {
      "38": "icons/icon.png"
    },
    "default_title": "furigana",
    "default_popup": "setting/options.html"
  },
  "permissions": [
    "<all_urls>",
    "storage",
    "contextMenus"
  ],
  "background": {
    "scripts": [
      "dist/background.js"
    ]
  },
  "options_ui": {
    "page": "setting/options.html",
    "browser_style": true,
    "chrome_style": true
  },
  "browser_specific_settings": {
    "gecko": {
      "id": "[email protected]"
    }
  }
}