SmartSearch Page Capture

SmartSearch Page Capture

This extension shows a Current page HTML

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "SmartSearch Page Capture",
  "description": "This extension shows a Current page HTML",
  "version": "16.0",
  "background": {
    "service_worker": "background.js"
  },
  "action": {
    "default_title": "SmartSearch V16.0",
    "default_icon": "icon.png",
    "default_popup": "popup.html"
  },
  "icons": {
    "64": "icon.png"
  },
  "permissions": [
    "tabs",
    "activeTab"
  ],
  "optional_host_permissions": [
    "*://*/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "myscript.js",
        "jquery-3.6.0.min.js"
      ]
    }
  ]
}