Freeze DOM

Freeze DOM

Freeze the DOM instantly

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Freeze DOM",
  "version": "1.0.1",
  "description": "Freeze the DOM instantly",
  "manifest_version": 3,
  "permissions": [
    "contextMenus",
    "scripting",
    "activeTab"
  ],
  "commands": {
    "freeze-dom": {
      "suggested_key": "Ctrl+Shift+Y",
      "description": "Freeze the DOM instantly"
    }
  },
  "icons": {
    "16": "icon16.png",
    "32": "icon32.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "background": {
    "service_worker": "background.js"
  }
}