Wegtam Search Agent Quick Search

Wegtam Search Agent Quick Search

The Wegtam Search Agent extension adds a new entry into the context menu of your browser when a text is marked on the website. The…

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "http://clients2.google.com/service/update2/crx",
  "name": "__MSG_extName__",
  "version": "1.0",
  "manifest_version": 2,
  "default_locale": "en",
  "description": "__MSG_extDescription__",
  "icons": {
    "16": "logo_16.png",
    "48": "logo_48.png",
    "128": "logo_128.png"
  },
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "wtcon.js"
      ]
    }
  ],
  "permissions": [
    "http://*/*",
    "https://*/*",
    "contextMenus",
    "tabs"
  ]
}