English Popup Thesaurus/Synonyms

English Popup Thesaurus/Synonyms

An English Thesaurus which gives synonyms of a word when double-clicked on a webpage.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "English Popup Thesaurus",
  "version": "1.0.8",
  "description": "An English Thesaurus which gives synonyms of a word which is double-click selected on a webpage.",
  "icons": {
    "96": "icons/Dico.png"
  },
  "permissions": [
    "activeTab",
    "storage"
  ],
  "background": {
    "scripts": [
      "./dependencies/jquery-3.2.1.min.js",
      "background.js"
    ]
  },
  "browser_action": {
    "default_icon": "icons/Dico.png",
    "default_title": "English Popup Thesaurus",
    "default_popup": "popup/index.html"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "js": [
        "./dependencies/jquery-3.2.1.min.js",
        "content.js",
        "./node_modules/dompurify/dist/purify.min.js"
      ]
    }
  ],
  "applications": {
    "gecko": {
      "id": "{74e2e3a5-6d4f-4766-b870-51b301cedb9c}"
    }
  },
  "options_ui": {
    "page": "options/options.html",
    "browser_style": true
  }
}