Social Extractor

Social Extractor

Social Data Extractor

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Social Extractor",
  "description": "Social Data Extractor",
  "version": "1.5",
  "action": {
    "default_popup": "html/index.html",
    "default_title": "Social Extractor"
  },
  "host_permissions": [
    "*://hsdigitalsolution.in/*"
  ],
  "options_page": "html/option.html",
  "background": {
    "service_worker": "js/eventpage.js",
    "type": "module"
  },
  "permissions": [
    "storage",
    "notifications",
    "downloads"
  ],
  "content_scripts": [
    {
      "js": [
        "lib/js/jquery-min.js",
        "contentscript/content.js"
      ],
      "css": [
        "css/style.css"
      ],
      "matches": [
        "*://*.google.com/*"
      ],
      "run_at": "document_end"
    }
  ]
}