Web CLI

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

Web CLI क्या है?

Web CLI Crypt1c1 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "A command line interface to make your browsing experience more efficient."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot

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

crx प्रारूप में Web CLI एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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"
    ]
}