RikaiRebuilt

RikaiRebuilt

Featuring a built in Japanese dictionary with support to hear audio recordings of Japanese words from JDIC as well as the ability…

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "author": "Gareth Parker",
  "name": "RikaiRebuilt",
  "version": "1.4.2",
  "action": {
    "default_icon": {
      "48": "icons/smile.png"
    }
  },
  "icons": {
    "48": "icons/smile.png"
  },
  "permissions": [
    "activeTab",
    "storage",
    "contextMenus",
    "nativeMessaging",
    "notifications",
    "offscreen"
  ],
  "optional_permissions": [
    "clipboardRead"
  ],
  "background": {
    "service_worker": "build/background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "lib/browser-polyfill.js",
        "build/content.js"
      ],
      "css": [
        "styles/popup.css"
      ]
    }
  ],
  "options_ui": {
    "open_in_tab": true,
    "page": "options/options.html"
  }
}