Power Thesaurus - Synonyms & Antonyms

Power Thesaurus - Synonyms & Antonyms

Most popular synonyms, antonyms and definition for any term.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "Power Thesaurus",
  "short_name": "PT",
  "description": "View synonyms and antonyms by button in toolbar, right-click or by word selection on any page.",
  "default_locale": "en",
  "version": "3.0.15",
  "permissions": [
    "storage",
    "contextMenus"
  ],
  "options_ui": {
    "page": "options.html"
  },
  "background": {
    "page": "background.html",
    "persistent": false
  },
  "browser_action": {
    "default_popup": "popup.html"
  },
  "content_scripts": [
    {
      "all_frames": false,
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "content.js"
      ],
      "css": [
        "content.css"
      ]
    }
  ],
  "icons": {
    "16": "images/icon16.png",
    "48": "images/icon48.png",
    "64": "images/icon64.png",
    "128": "images/icon128.png"
  },
  "content_security_policy": "script-src 'self' https://www.googletagmanager.com https://ssl.google-analytics.com; object-src 'self'",
  "web_accessible_resources": [
    "images/*",
    "assets/fonts/*"
  ],
  "browser_specific_settings": {
    "gecko": {
      "id": "@powerthesaurus.org"
    }
  }
}