Wordpress Toolbar Toggle
This extension will hide or show the admin toolbar on Wordpress sites
Wat is Wordpress Toolbar Toggle?
Wordpress Toolbar Toggle is een Chrome-extensie ontwikkeld door Brandon S., en de belangrijkste functie is "This extension will hide or show the admin toolbar on Wordpress sites".
Download het CRX-bestand van de extensie Wordpress Toolbar Toggle
Download Wordpress Toolbar Toggle-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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 Basisinformatie over de Extensie
| Naam | |
| ID | eihdbleeejdadggpdmpchjiflglepphc |
| Officiële URL | https://chromewebstore.google.com/detail/wordpress-toolbar-toggle/eihdbleeejdadggpdmpchjiflglepphc |
| Beschrijving | This extension will hide or show the admin toolbar on Wordpress sites |
| Bestandsgrootte | 25.96 KB |
| Aantal Installaties | 59 |
| Huidige Versie | 2.0 |
| Laatst Bijgewerkt | 2018-08-16 |
| Publicatiedatum | 2018-08-16 |
| Ontwikkelaar | Brandon S. |
| Betalingswijze | free |
| Ondersteunde Talen | 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
}
]
} | |