Text Selection Search

Text Selection Search

Text Selection Search allows the quick search on Youtube, Facebook, Bing, Vimeo Videos and Duckduckgo

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "Text Selection Search",
  "description": "Text Selection Search allows the quick search on Youtube, Facebook, Bing, Vimeo Videos and Duckduckgo",
  "version": "1.0.0.1",
  "manifest_version": 3,
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "js/jquery-3.6.0.min.js",
        "content.js"
      ]
    }
  ],
  "action": {
    "default_icon": {
      "16": "logo/16.png",
      "32": "logo/32.png"
    }
  },
  "icons": {
    "16": "logo/16.png",
    "32": "logo/32.png",
    "48": "logo/48.png",
    "96": "logo/48.png",
    "128": "logo/128.png"
  },
  "background": {
    "service_worker": "background.js"
  },
  "permissions": [
    "contextMenus"
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}