Wordpress Toolbar Toggle
This extension will hide or show the admin toolbar on Wordpress sites
Co to jest Wordpress Toolbar Toggle?
Wordpress Toolbar Toggle to rozszerzenie Chrome opracowane przez Brandon S., a jego główną funkcją jest „This extension will hide or show the admin toolbar on Wordpress sites”.
Pobierz plik CRX rozszerzenia Wordpress Toolbar Toggle
Pobierz pliki rozszerzeń Wordpress Toolbar Toggle w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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
Podstawowe informacje o rozszerzeniu
Nazwa | Wordpress Toolbar Toggle |
ID | eihdbleeejdadggpdmpchjiflglepphc |
Oficjalny URL | https://chromewebstore.google.com/detail/wordpress-toolbar-toggle/eihdbleeejdadggpdmpchjiflglepphc |
Opis | This extension will hide or show the admin toolbar on Wordpress sites |
Rozmiar pliku | 25.96 KB |
Liczba instalacji | 59 |
Aktualna Wersja | 2.0 |
Ostatnia Aktualizacja | 2018-08-16 |
Data Publikacji | 2018-08-16 |
Deweloper | Brandon S. |
Typ Płatności | free |
Obsługiwane Języki | 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 } ] } |