WebTerminal

A browser terminal designed for programmers, you can use the command line to control the browser, it is small, and very beautiful.

WebTerminalคืออะไร?

WebTerminal เป็นส่วนขยายของ Chrome ที่พัฒนาโดย mouse-man และคุณลักษณะหลักของมันคือ "A browser terminal designed for programmers, you can use the command line to control the browser, it is small, and very beautiful."

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

screenshot
screenshot
screenshot
screenshot
screenshot

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

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

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

                        This terminal can help you to do some automated tasks on the page, such as regularly log in to a website, and then do some automated operations, of course, you can also quickly use the search engine, json engine, translation engine, curl, etc., everything is just the beginning, We hope to bring more surprises to you.                    

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

ชื่อ WebTerminal WebTerminal
ID djnneaagmekpmmbmeicecdkgcnkcnhle
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/webterminal/djnneaagmekpmmbmeicecdkgcnkcnhle
คำอธิบาย A browser terminal designed for programmers, you can use the command line to control the browser, it is small, and very beautiful.
ขนาดไฟล์ 132 KB
จำนวนการติดตั้ง 3,506
เวอร์ชันปัจจุบัน 2.0.2
อัปเดตครั้งล่าสุด 2023-04-11
วันที่เผยแพร่ 2020-07-04
คะแนน 4.86/5 รวมทั้งหมด 7 คะแนน
ผู้พัฒนา mouse-man
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/web-terminal/web-terminal
URL หน้าช่วยเหลือ https://github.com/web-terminal/web-terminal/tree/master
ภาษาที่รองรับ en,zh-CN
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_appName__",
    "version": "2.0.2",
    "manifest_version": 3,
    "description": "__MSG_description__",
    "minimum_chrome_version": "88",
    "default_locale": "en",
    "icons": {
        "16": "icons\/16.png",
        "48": "icons\/48.png",
        "128": "icons\/128.png"
    },
    "author": {
        "name": "web-terminal",
        "birth": 2020
    },
    "action": {
        "default_icon": {
            "19": "icons\/19.png",
            "38": "icons\/38.png"
        },
        "default_title": "Web Terminal",
        "default_popup": "popup.html"
    },
    "background": {
        "service_worker": "js\/background.js"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "css\/cmd.css",
                "_favicon\/*"
            ],
            "matches": [
                ""
            ],
            "extension_ids": [
                "*"
            ]
        }
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "all_frames": true,
            "js": [
                "js\/libs\/jquery-3.2.1.min.js",
                "js\/libs\/base.min.js",
                "js\/browser_api.js",
                "js\/content\/message.js"
            ],
            "run_at": "document_start"
        },
        {
            "matches": [
                ""
            ],
            "all_frames": false,
            "js": [
                "js\/libs\/crypto.js",
                "js\/libs\/minimist.min.js",
                "js\/cmd.js",
                "js\/content\/content.js"
            ],
            "run_at": "document_start"
        }
    ],
    "commands": {
        "toggle-cmdwin": {
            "suggested_key": {
                "default": "Ctrl+Shift+0"
            },
            "description": "Toggle terminal window",
            "global": true
        }
    },
    "permissions": [
        "favicon",
        "tabs",
        "storage",
        "bookmarks",
        "notifications",
        "history",
        "sessions",
        "scripting",
        "cookies",
        "declarativeNetRequest",
        "declarativeNetRequestWithHostAccess",
        "declarativeNetRequestFeedback"
    ],
    "host_permissions": [
        ""
    ]
}