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                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ 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
        }
    ]
}