Web CLI

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

Web CLI là gì?

Web CLI là một tiện ích mở rộng Chrome được phát triển bởi Crypt1c1, và tính năng chính của nó là "A command line interface to make your browsing experience more efficient.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot

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

Tải xuống các tệp mở rộng Web CLI 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

                        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.                    

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

Tên Web CLI Web CLI
ID eokhjbpjmgddgpcojehfngigfcikdfnj
URL Chính Thức https://chromewebstore.google.com/detail/web-cli/eokhjbpjmgddgpcojehfngigfcikdfnj
Mô tả A command line interface to make your browsing experience more efficient.
Kích Thước Tệp 83.74 KB
Số Lần Cài Đặt 114
Phiên Bản Hiện Tại 1.0.2
Cập Nhật Lần Cuối 2017-07-24
Ngày Phát Hành 2017-07-24
Đánh Giá 3.33/5 Tổng số 3 Đánh Giá
Nhà Phát Triển Crypt1c1
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": "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"
    ]
}