Enable Every Element On Page

Enable Every Element On Page

This extension will enable all disabled elements and mark them as read/write

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Enable Every Element On Page",
  "description": "This extension will enable all disabled elements and mark them as read/write",
  "version": "1.0",
  "permissions": [
    "activeTab"
  ],
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "browser_action": {
    "default_title": "Enable elements",
    "default_icon": "edit1919.png"
  },
  "manifest_version": 2
}