word.ly - Dictionary, Thesaurus, & Rhymes

word.ly - Dictionary, Thesaurus, & Rhymes

Have the ability to search for definitions, synonyms, and rhymes! The word.ly extension is a multi-purposed dictionary extension…

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "word.ly - Dictionary, Thesaurus, & Rhymes",
  "version": "1.8",
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "codefiles/content.js"
      ]
    }
  ],
  "background": {
    "scripts": [
      "codefiles/background.js"
    ]
  },
  "icons": {
    "16": "w16.png",
    "48": "w48.png",
    "128": "w128.png"
  },
  "browser_action": {
    "default_icon": "w.png",
    "default_popup": "codefiles/popup.html",
    "default_title": "Click To Search For A Word!"
  }
}