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 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "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

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में WebTerminal एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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"
    ]
}