WordPress Admin Switcher

WordPress Admin Switcher

Quickly log into and switch to/from the WordPress Admin with a single keyboard shortcut or click.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "WordPress Admin Switcher",
  "short_name": "WPAdminSwitcher",
  "description": "Quickly log into and switch to/from the WordPress Admin with a single keyboard shortcut or click.",
  "version": "2.0.0",
  "homepage_url": "https://github.com/kellenmace/wp-admin-switcher/",
  "manifest_version": 3,
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "content.js"
      ]
    }
  ],
  "background": {
    "service_worker": "service-worker.js"
  },
  "action": {
    "default_icon": "images/icon-38.png"
  },
  "icons": {
    "128": "images/icon-128.png"
  },
  "commands": {
    "toggle-feature-foo": {
      "suggested_key": {
        "default": "Ctrl+Shift+A",
        "mac": "Command+Shift+A"
      },
      "description": "Switch to/from admin"
    }
  }
}