Power Thesaurus

Power Thesaurus

View synonyms and antonyms by button in toolbar, right-click or by word selection on any page.

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.12",
  "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'; object-src 'self'; connect-src https://api.powerthesaurus.org/",
  "web_accessible_resources": [
    "images/*",
    "assets/fonts/*"
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}