RikaiRebuilt

RikaiRebuilt

Featuring a built in Japanese dictionary with support to hear audio recordings of Japanese words from JDIC as well as the ability to import words in to the flashcard app Anki, this is a port of the old Firefox addon "Rikaisama"

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "author": "Gareth Parker",
  "name": "RikaiRebuilt",
  "version": "1.4.2",
  "applications": {
    "gecko": {
      "id": "{3b5a4a18-bf58-4434-adec-106450a33368}"
    }
  },
  "browser_action": {
    "browser_style": true,
    "default_icon": {
      "48": "icons/smile.png"
    }
  },
  "icons": {
    "48": "icons/smile.png"
  },
  "permissions": [
    "<all_urls>",
    "storage",
    "contextMenus",
    "nativeMessaging",
    "notifications"
  ],
  "optional_permissions": [
    "clipboardRead"
  ],
  "background": {
    "persistent": true,
    "scripts": [
      "build/background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "build/content.js"
      ],
      "css": [
        "styles/popup.css"
      ]
    }
  ],
  "options_ui": {
    "open_in_tab": true,
    "page": "options/options.html"
  }
}