Synonym

Synonym

Select a word and get synonyms and antonyms. Brought to you by Synonym.com

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Synonym",
  "version": "2.6",
  "description": "Select a word and get synonyms and antonyms. Brought to you by Synonym.com",
  "permissions": [
    "activeTab",
    "contextMenus"
  ],
  "background": {
    "scripts": [
      "js/background.js"
    ],
    "persistent": false
  },
  "browser_action": {
    "default_popup": "popup.html",
    "default_icon": {
      "16": "images/favicon16.png",
      "32": "images/favicon32.png",
      "48": "images/favicon48.png",
      "128": "images/favicon128.png"
    }
  },
  "icons": {
    "16": "images/favicon16.png",
    "32": "images/favicon32.png",
    "48": "images/favicon48.png",
    "128": "images/favicon128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "css": [
        "css/content.css"
      ],
      "js": [
        "js/contentScript.js"
      ]
    }
  ],
  "web_accessible_resources": [
    "images/favicon.png",
    "*.html",
    "js/*",
    "css/*"
  ],
  "manifest_version": 2
}