Wordpress Toolbar Toggle
This extension will hide or show the admin toolbar on Wordpress sites
Qu'est-ce que Wordpress Toolbar Toggle ?
Wordpress Toolbar Toggle est une extension Chrome développée par Brandon S., et sa fonction principale est "This extension will hide or show the admin toolbar on Wordpress sites".
Télécharger le fichier CRX de l'extension Wordpress Toolbar Toggle
Téléchargez les fichiers d'extension Wordpress Toolbar Toggle au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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
Informations de Base sur l'Extension
Nom | Wordpress Toolbar Toggle |
ID | eihdbleeejdadggpdmpchjiflglepphc |
URL Officiel | https://chromewebstore.google.com/detail/wordpress-toolbar-toggle/eihdbleeejdadggpdmpchjiflglepphc |
Description | This extension will hide or show the admin toolbar on Wordpress sites |
Taille du Fichier | 25.96 KB |
Nombre d'Installations | 59 |
Version Actuelle | 2.0 |
Dernière Mise à Jour | 2018-08-16 |
Date de Publication | 2018-08-16 |
Développeur | Brandon S. |
Type de Paiement | free |
Langues Prises en Charge | 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 } ] } |