Screenshot Search

Screenshot Search

select and capture any area on a web page, then effortlessly perform reverse image searches on Google Images

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Screenshot Search",
  "version": "1.1",
  "description": "select and capture any area on a web page, then effortlessly perform reverse image searches on Google Images",
  "manifest_version": 3,
  "minimum_chrome_version": "88",
  "icons": {
    "128": "img/favicon.png"
  },
  "action": {
    "default_icon": "img/favicon.png",
    "default_title": "Screenshot Search"
  },
  "background": {
    "service_worker": "js/background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "run_at": "document_end",
      "js": [
        "js/jquery.js",
        "js/init.js",
        "js/sc_content.js"
      ],
      "css": [
        "css/content.css"
      ]
    }
  ],
  "host_permissions": [
    "*://*/*"
  ],
  "permissions": [
    "tabs",
    "activeTab",
    "scripting"
  ]
}