Wordpress Toolbar Toggle
This extension will hide or show the admin toolbar on Wordpress sites
Co je Wordpress Toolbar Toggle?
Wordpress Toolbar Toggle je rozšíření Chrome vyvinuté Brandon S., a jeho hlavní funkcí je „This extension will hide or show the admin toolbar on Wordpress sites“.
Stáhnout soubor CRX rozšíření Wordpress Toolbar Toggle
Stáhněte si soubory rozšíření Wordpress Toolbar Toggle ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.
Pokyny pro Použití Rozšíření
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
Základní Informace o Rozšíření
Název | Wordpress Toolbar Toggle |
ID | eihdbleeejdadggpdmpchjiflglepphc |
Oficiální URL | https://chromewebstore.google.com/detail/wordpress-toolbar-toggle/eihdbleeejdadggpdmpchjiflglepphc |
Popis | This extension will hide or show the admin toolbar on Wordpress sites |
Velikost souboru | 25.96 KB |
Počet instalací | 59 |
Aktuální Verze | 2.0 |
Poslední Aktualizace | 2018-08-16 |
Datum Vydání | 2018-08-16 |
Vývojář | Brandon S. |
Typ Platby | free |
Podporované Jazyky | 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 } ] } |