Wordpress Toolbar Toggle
This extension will hide or show the admin toolbar on Wordpress sites
ما هو Wordpress Toolbar Toggle؟
Wordpress Toolbar Toggle هو إضافة Chrome تم تطويرها بواسطة Brandon S.، والميزة الرئيسية لها هي "This extension will hide or show the admin toolbar on Wordpress sites".
تحميل ملف CRX للإضافة Wordpress Toolbar Toggle
قم بتنزيل ملفات الامتداد Wordpress Toolbar Toggle بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
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
معلومات أساسية عن التمديد
الاسم | Wordpress Toolbar Toggle |
ID | eihdbleeejdadggpdmpchjiflglepphc |
عنوان URL الرسمي | https://chromewebstore.google.com/detail/wordpress-toolbar-toggle/eihdbleeejdadggpdmpchjiflglepphc |
الوصف | This extension will hide or show the admin toolbar on Wordpress sites |
حجم الملف | 25.96 KB |
عدد التثبيتات | 59 |
النسخة الحالية | 2.0 |
آخر تحديث | 2018-08-16 |
تاريخ النشر | 2018-08-16 |
المطور | Brandon S. |
نوع الدفع | free |
اللغات المدعومة | 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 } ] } |