Web CLI

A command line interface to make your browsing experience more efficient.

Web CLIคืออะไร?

Web CLI เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Crypt1c1 และคุณลักษณะหลักของมันคือ "A command line interface to make your browsing experience more efficient."

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

screenshot
screenshot
screenshot

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

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

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

                        Use your mouse less often and simplify complex browser actions with only a few strokes on your keyboard.

Open and close the wCLI console with Ctrl+~ and type your commands as you please, even typing multiple commands separated by a semicolon to have them execute sequentially.  Access the entire list of commands with detailed explanations by typing 'help'.

Make your own commands through macros or scripts by clicking the extension icon. With macros you can store a chain of commands separated by semicolons and execute the chain with the custom command name you provide. With scripts you can go even further and write your own JavaScript for custom commands.                    

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

ชื่อ Web CLI Web CLI
ID eokhjbpjmgddgpcojehfngigfcikdfnj
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/web-cli/eokhjbpjmgddgpcojehfngigfcikdfnj
คำอธิบาย A command line interface to make your browsing experience more efficient.
ขนาดไฟล์ 83.74 KB
จำนวนการติดตั้ง 114
เวอร์ชันปัจจุบัน 1.0.2
อัปเดตครั้งล่าสุด 2017-07-24
วันที่เผยแพร่ 2017-07-24
คะแนน 3.33/5 รวมทั้งหมด 3 คะแนน
ผู้พัฒนา Crypt1c1
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Web CLI",
    "description": "A command line interface to make your browsing experience more efficient.",
    "version": "1.0.2",
    "short_name": "wCLI",
    "browser_action": {
        "default_icon": "images\/icon16.png",
        "default_popup": "html\/browserAction.html"
    },
    "background": {
        "scripts": [
            "libs\/jquery-3.1.1.min.js",
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "libs\/jquery-3.1.1.min.js",
                "main.js"
            ],
            "css": [
                "main.css"
            ],
            "run_at": "document_start"
        },
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "onload.js"
            ],
            "run_at": "document_end"
        }
    ],
    "permissions": [
        "activeTab",
        "storage"
    ],
    "icons": {
        "128": "images\/icon.png",
        "48": "images\/icon48.png",
        "16": "images\/icon16.png"
    },
    "web_accessible_resources": [
        "\/libs\/jquery-3.1.1.min.js",
        "\/libs\/bootstrap-3.3.7.min.js",
        "\/libs\/bootstrap-3.3.7.min.css"
    ]
}