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 с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
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 Основная информация о расширении
| Название | |
| 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
}
]
} | |