Extension for RhymeZone Rhymes (Unofficial)

Extension for RhymeZone Rhymes (Unofficial)

Chrome extension that allows you to select any word on any website or Google Docs and lookup rhymes on RhymeZone.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Extension for RhymeZone Rhymes (Unofficial)",
  "description": "Chrome extension that allows you to select any word on any website or Google Docs and lookup rhymes on RhymeZone.",
  "version": "2.3",
  "icons": {
    "16": "images/icons/icon16.png",
    "48": "images/icons/icon48.png",
    "128": "images/icons/icon128.png"
  },
  "browser_action": {
    "default_icon": "images/icons/icon16.png",
    "default_popup": "html/popup.html"
  },
  "background": {
    "scripts": [
      "js/eventPage.js"
    ],
    "persistent": true
  },
  "omnibox": {
    "keyword": "rhymezone"
  },
  "web_accessible_resources": [
    "content.js",
    "content.css"
  ],
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "js/content.js"
      ],
      "css": [
        "css/content.css"
      ],
      "all_frames": true
    }
  ],
  "options_page": "html/options.html",
  "permissions": [
    "storage",
    "contextMenus",
    "webRequest",
    "webRequestBlocking",
    "<all_urls>"
  ]
}