SGE (Search Generative Experience) Google SERP Extractor

SGE (Search Generative Experience) Google SERP Extractor

Chrome extension to extract information from the Google SGE (Search Generative Experience) SERP results.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "SGE (Search Generative Experience) Google SERP Extractor",
  "description": "Chrome extension to extract information from the Google SGE (Search Generative Experience) SERP results.",
  "version": "1.0.1",
  "manifest_version": 3,
  "icons": {
    "16": "icon.png",
    "48": "icon.png",
    "128": "icon.png"
  },
  "action": {
    "default_popup": "popup.html",
    "default_title": "SGE (Search Generative Experience) Google SERP Extractor",
    "default_icon": "icon.png"
  },
  "permissions": [
    "storage"
  ],
  "content_scripts": [
    {
      "matches": [
        "*://www.google.com/*",
        "*://google.com/*"
      ],
      "js": [
        "contentScript.js"
      ],
      "run_at": "document_start"
    }
  ]
}