WebAdmin

This extension checks if site supports WebAdmin Editor

WebAdminคืออะไร?

WebAdmin เป็นส่วนขยายของ Chrome ที่พัฒนาโดย metabake1 และคุณลักษณะหลักของมันคือ "This extension checks if site supports WebAdmin Editor"

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย WebAdmin

ดาวน์โหลดไฟล์ส่วนขยาย WebAdmin ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        This extension checks if site supports WebAdmin Editor.
In case site is support WebAdmin editor, on button click you'll be redirected to WebAdmin editor to edit site content.                    

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

ชื่อ WebAdmin WebAdmin
ID oaecohdoihcbaogfkhlfkcdbggnmmbek
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/webadmin/oaecohdoihcbaogfkhlfkcdbggnmmbek
คำอธิบาย This extension checks if site supports WebAdmin Editor
ขนาดไฟล์ 54.41 KB
จำนวนการติดตั้ง 36
เวอร์ชันปัจจุบัน 0.1.1
อัปเดตครั้งล่าสุด 2019-05-12
วันที่เผยแพร่ 2019-05-08
ผู้พัฒนา metabake1
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://blog.metabake.org
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "WebAdmin",
    "description": "This extension checks if site supports WebAdmin Editor",
    "version": "0.1.1",
    "browser_action": {
        "default_icon": "icon.png",
        "default_popup": "index.html"
    },
    "commands": {
        "_execute_browser_action": {
            "suggested_key": {
                "default": "Ctrl+Shift+F",
                "mac": "MacCtrl+Shift+F"
            },
            "description": "Opens index.html"
        }
    },
    "background": {
        "scripts": [
            "lib\/jquery\/jquery.min.js",
            "lib\/js-yaml\/js-yaml.min.js",
            "background.js"
        ],
        "persistent": false
    },
    "content_security_policy": "script-src 'self' https:\/\/ajax.googleapis.com; object-src 'self'",
    "permissions": [
        "activeTab",
        "tabs",
        "http:\/\/*\/",
        "https:\/\/*\/"
    ]
}