Wordpress Toolbar Toggle

This extension will hide or show the admin toolbar on Wordpress sites

Wordpress Toolbar Toggle là gì?

Wordpress Toolbar Toggle là một tiện ích mở rộng Chrome được phát triển bởi Brandon S., và tính năng chính của nó là "This extension will hide or show the admin toolbar on Wordpress sites".

Tải xuống tệp CRX của tiện ích mở rộng Wordpress Toolbar Toggle

Tải xuống các tệp mở rộng Wordpress Toolbar Toggle dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Wordpress Toolbar Toggle Wordpress Toolbar Toggle
ID eihdbleeejdadggpdmpchjiflglepphc
URL Chính Thức https://chromewebstore.google.com/detail/wordpress-toolbar-toggle/eihdbleeejdadggpdmpchjiflglepphc
Mô tả This extension will hide or show the admin toolbar on Wordpress sites
Kích Thước Tệp 25.96 KB
Số Lần Cài Đặt 59
Phiên Bản Hiện Tại 2.0
Cập Nhật Lần Cuối 2018-08-16
Ngày Phát Hành 2018-08-16
Nhà Phát Triển Brandon S.
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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
        }
    ]
}