Power Thesaurus

Power Thesaurus

Use the power of synonyms by button in toolbar, right-click or by word selection on any page.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Power Thesaurus",
  "short_name": "PT",
  "description": "Use the power of synonyms by button in toolbar, right-click or by word selection on any page.",
  "default_locale": "en",
  "version": "3.1.1",
  "permissions": [
    "storage",
    "contextMenus"
  ],
  "options_ui": {
    "page": "options.html?options=true",
    "open_in_tab": true
  },
  "background": {
    "page": "background.html",
    "persistent": false
  },
  "browser_action": {
    "default_popup": "popup.html?popup=true"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "exclude_matches": [
        "https://docs.google.com/document/*",
        "https://*.powerthesaurus.org/*",
        "http://*.powerthesaurus.org/*"
      ],
      "js": [
        "content.js"
      ],
      "css": [
        "content.css"
      ]
    },
    {
      "matches": [
        "*://docs.google.com/document/*"
      ],
      "all_frames": false,
      "js": [
        "docsContent.js"
      ],
      "css": [
        "content.css"
      ],
      "run_at": "document_idle"
    },
    {
      "matches": [
        "*://docs.google.com/document/*"
      ],
      "all_frames": false,
      "js": [
        "docsPreContent.js"
      ],
      "run_at": "document_start"
    },
    {
      "matches": [
        "https://*.powerthesaurus.org/*",
        "http://*.powerthesaurus.org/*"
      ],
      "js": [
        "authorization.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.google-analytics.com/analytics.js; object-src 'self'; connect-src https://api.powerthesaurus.org/ https://www.google-analytics.com/ https://stats.g.doubleclick.net/",
  "web_accessible_resources": [
    "images/*",
    "assets/fonts/*",
    "injectables/*"
  ]
}