Wordpress Toolbar Toggle

Wordpress Toolbar Toggle

This extension will hide or show the admin toolbar on Wordpress sites

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Wordpress Toolbar Toggle",
  "description": "This extension will hide or show the admin toolbar on Wordpress sites",
  "version": "2.0",
  "browser_action": {
    "default_icon": "icon.png",
    "title": "WPA"
  },
  "permissions": [
    "tabs",
    "notifications",
    "http://*/",
    "https://*/"
  ],
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "js": [
        "toggle.js"
      ],
      "run_at": "document_end",
      "all_frames": true
    }
  ]
}