Wordpress Toolbar Toggle
This extension will hide or show the admin toolbar on Wordpress sites
Apa itu Wordpress Toolbar Toggle?
Wordpress Toolbar Toggle adalah ekstensi Chrome yang dikembangkan oleh Brandon S., dan fitur utamanya adalah "This extension will hide or show the admin toolbar on Wordpress sites".
Unduh Berkas CRX Ekstensi Wordpress Toolbar Toggle
Unduh file ekstensi Wordpress Toolbar Toggle dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.
Petunjuk Penggunaan Ekstensi
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
Informasi Dasar Ekstensi
Nama | Wordpress Toolbar Toggle |
ID | eihdbleeejdadggpdmpchjiflglepphc |
URL Resmi | https://chromewebstore.google.com/detail/wordpress-toolbar-toggle/eihdbleeejdadggpdmpchjiflglepphc |
Deskripsi | This extension will hide or show the admin toolbar on Wordpress sites |
Ukuran File | 25.96 KB |
Jumlah Instalasi | 59 |
Versi Saat Ini | 2.0 |
Terakhir Diperbarui | 2018-08-16 |
Tanggal Publikasi | 2018-08-16 |
Pengembang | Brandon S. |
Tipe Pembayaran | free |
Bahasa yang Didukung | 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 } ] } |