Wordpress Toolbar Toggle
This extension will hide or show the admin toolbar on Wordpress sites
Cos'è Wordpress Toolbar Toggle?
Wordpress Toolbar Toggle è un'estensione di Chrome sviluppata da Brandon S., e la sua funzione principale è "This extension will hide or show the admin toolbar on Wordpress sites".
Scarica il file CRX dell'estensione Wordpress Toolbar Toggle
Scarica i file di estensione Wordpress Toolbar Toggle in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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 Informazioni di Base sull'Estensione
| Nome | |
| ID | eihdbleeejdadggpdmpchjiflglepphc |
| URL Ufficiale | https://chromewebstore.google.com/detail/wordpress-toolbar-toggle/eihdbleeejdadggpdmpchjiflglepphc |
| Descrizione | This extension will hide or show the admin toolbar on Wordpress sites |
| Dimensione del File | 25.96 KB |
| Conteggio Installazioni | 59 |
| Versione Corrente | 2.0 |
| Ultimo Aggiornamento | 2018-08-16 |
| Data di Pubblicazione | 2018-08-16 |
| Sviluppatore | Brandon S. |
| Tipo di Pagamento | free |
| Lingue Supportate | 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
}
]
} | |