10ten Japanese Reader (Rikaichamp)

10ten Japanese Reader (Rikaichamp)

Quickly translate Japanese by hovering over words. Formerly released as Rikaichamp.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "10ten Japanese Reader (Rikaichamp)",
  "author": "Brian Birtles",
  "version": "1.18.0",
  "browser_specific_settings": {
    "gecko": {
      "id": "{59812185-ea92-4cca-8ab7-cfcacee81281}",
      "strict_min_version": "113.0"
    },
    "gecko_android": {}
  },
  "description": "__MSG_extension_description__",
  "default_locale": "en",
  "minimum_chrome_version": "100",
  "icons": {
    "16": "images/10ten-ja-reader.svg",
    "32": "images/10ten-ja-reader.svg",
    "48": "images/10ten-ja-reader.svg",
    "96": "images/10ten-ja-reader.svg",
    "128": "images/10ten-ja-reader.svg"
  },
  "permissions": [
    "alarms",
    "clipboardWrite",
    "contextMenus",
    "storage",
    "unlimitedStorage"
  ],
  "background": {
    "persistent": false,
    "scripts": [
      "10ten-ja-background.js"
    ]
  },
  "browser_action": {
    "browser_style": false,
    "default_icon": "images/10ten-disabled.svg",
    "default_title": "__MSG_command_toggle_disabled__"
  },
  "options_ui": {
    "page": "options.html"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*",
        "file:///*"
      ],
      "match_about_blank": true,
      "js": [
        "10ten-ja-content.js"
      ],
      "all_frames": true,
      "run_at": "document_start"
    },
    {
      "matches": [
        "https://docs.google.com/*"
      ],
      "js": [
        "10ten-ja-gdocs-bootstrap.js"
      ],
      "all_frames": true,
      "run_at": "document_start",
      "world": "MAIN"
    }
  ],
  "web_accessible_resources": [
    "css/selection.css",
    "docs/introducing-the-mouse.html"
  ],
  "commands": {
    "_execute_browser_action": {
      "suggested_key": {
        "default": "Alt+R"
      },
      "description": "__MSG_command_toggle_description__"
    }
  }
}