Design Mode Switcher

Design Mode Switcher

The Design Mode Switcher is an easy-to-use Chrome extension that lets you edit any website's text with just a click.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Design Mode Switcher",
  "version": "1.0",
  "description": "The Design Mode Switcher is an easy-to-use Chrome extension that lets you edit any website's text with just a click.",
  "action": {
    "default_icon": {
      "16": "images/icon_off.png",
      "48": "images/icon_off.png",
      "128": "images/icon_off.png"
    },
    "default_title": "Design Mode Off"
  },
  "background": {
    "service_worker": "background.js"
  },
  "permissions": [
    "activeTab",
    "scripting"
  ],
  "icons": {
    "16": "images/icon_off.png",
    "48": "images/icon_off.png",
    "128": "images/icon_off.png"
  }
}