Wordpress Toolbar Toggle
This extension will hide or show the admin toolbar on Wordpress sites
What is Wordpress Toolbar Toggle?
Wordpress Toolbar Toggle is a Chrome extension developed by Brandon S., and its main feature is "This extension will hide or show the admin toolbar on Wordpress sites".
Download Wordpress Toolbar Toggle Extension CRX File
Download Wordpress Toolbar Toggle extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
This extension allows you to click the icon to show/hide the Wordpress admin bar when working on your Wordpress site. Update! Version 2 persists the enable/disabled state across refresh! Contributions appreciated, please follow standard contributing practices: https://github.com/BrandonS8/wp-admin-bar
Extension Basic Information
Name | Wordpress Toolbar Toggle |
ID | eihdbleeejdadggpdmpchjiflglepphc |
Official URL | https://chromewebstore.google.com/detail/wordpress-toolbar-toggle/eihdbleeejdadggpdmpchjiflglepphc |
Description | This extension will hide or show the admin toolbar on Wordpress sites |
File Size | 25.96 KB |
Installation Count | 59 |
Current Version | 2.0 |
Last Updated | 2018-08-16 |
Publish Date | 2018-08-16 |
Developer | Brandon S. |
Payment Type | free |
Supported Languages | en |
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 } ] } |