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은(는) mouse-man에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "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
screenshot
screenshot
screenshot
screenshot
screenshot

WebTerminal 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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 ffbkecdpjcbnddfmkccojhedijhkealk
공식 URL https://chromewebstore.google.com/detail/webterminal/ffbkecdpjcbnddfmkccojhedijhkealk
설명 A browser terminal designed for programmers, you can use the command line to control the browser, it is small, and very beautiful.
파일 크기 140 KB
설치 횟수 655
현재 버전 1.4.6
최근 업데이트 2021-04-25
출시 날짜 2021-04-25
개발자 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": "1.4.6",
    "manifest_version": 2,
    "description": "__MSG_description__",
    "minimum_chrome_version": "21",
    "default_locale": "en",
    "icons": {
        "16": "icons\/16.png",
        "48": "icons\/48.png",
        "128": "icons\/128.png"
    },
    "author": {
        "name": "web-terminal",
        "birth": 2020
    },
    "browser_action": {
        "default_icon": {
            "19": "icons\/19.png",
            "38": "icons\/38.png"
        },
        "default_title": "Web Terminal",
        "default_popup": "popup.html"
    },
    "background": {
        "scripts": [
            "js\/libs\/jquery-3.2.1.min.js",
            "js\/libs\/base.min.js",
            "js\/libs\/cron.min.js",
            "js\/browser_api.js",
            "js\/background.js"
        ]
    },
    "web_accessible_resources": [
        "css\/cmd.css"
    ],
    "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\/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": [
        "",
        "tabs",
        "storage",
        "bookmarks",
        "notifications",
        "history",
        "sessions"
    ]
}