Mark Your Search

Mark Your Search

Mark required text from the webpage and search via popular search engines!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "Mark Your Search",
  "version": "1.0.1",
  "manifest_version": 3,
  "background": {
    "service_worker": "background.js"
  },
  "action": {
    "default_icon": "./assets/logo.png",
    "default_title": "Mark Your Search"
  },
  "content_scripts": [
    {
      "css": [
        "./helpers/tooltip.css"
      ],
      "js": [
        "./helpers/tooltip.js"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "description": "Mark required text from the webpage and search via popular search engines!",
  "icons": {
    "128": "./assets/logo.png"
  },
  "permissions": [
    "storage"
  ],
  "update_url": "https://clients2.google.com/service/update2/crx",
  "web_accessible_resources": [
    {
      "resources": [
        "assets/*.svg"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ]
}