Wordpress Toolbar Toggle

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

什么是Wordpress Toolbar Toggle?

Wordpress Toolbar Toggle是由Brandon S.开发的Chrome扩展程序,该扩展的主要功能是“This extension will hide or show the admin toolbar on Wordpress sites”。

下载Wordpress Toolbar Toggle扩展crx文件

下载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                    

扩展基本信息

名称 Wordpress Toolbar Toggle 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
        }
    ]
}