Design Mode

Design Mode

Toggle the ability to temporarily edit content directly in a website.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_extName__",
  "short_name": "__MSG_extName__",
  "description": "__MSG_extDescription__",
  "default_locale": "en",
  "version": "0.3",
  "permissions": [
    "activeTab",
    "tabs"
  ],
  "background": {
    "scripts": [
      "designmode.js"
    ],
    "persistent": false
  },
  "browser_action": {
    "default_title": "Toggle design mode",
    "default_icon": "design-mode.png"
  },
  "icons": {
    "48": "design-mode-active.png",
    "128": "design-mode128.png"
  },
  "manifest_version": 2
}