Yez

Task runner

Yez क्या है?

Yez Krasimir Tsonev द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Task runner"।

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

screenshot

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

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

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

                        Yez! is a task runner. It uses the Yez Node.js module to run shell programs. It also executes some browser based operations like loading a new page, clicking on element. 

Along with that has a simple terminal implementation so you can execute terminal commands directly from your browser.                    

एक्सटेंशन की मूल जानकारी

नाम Yez Yez
ID acbhddemkmodoahhmnphpcfmcfgpjmap
आधिकारिक URL https://chromewebstore.google.com/detail/yez/acbhddemkmodoahhmnphpcfmcfgpjmap
विवरण Task runner
फ़ाइल का आकार 626 KB
स्थापना संख्या 219
वर्तमान संस्करण 0.2.0
अंतिम अपडेट 2016-05-28
प्रकाशन तिथि 2016-05-28
रेटिंग 4.29/5 कुल 7 रेटिंग्स
डेवलपर Krasimir Tsonev
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/krasimir/yez
सहायता पृष्ठ URL https://github.com/krasimir/yez/issues
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Yez",
    "description": "Task runner",
    "version": "0.2.0",
    "icons": {
        "16": "img\/icon16.png",
        "48": "img\/icon48.png",
        "128": "img\/icon128.png"
    },
    "permissions": [
        "tabs",
        "debugger",
        "http:\/\/*\/",
        "https:\/\/*\/*",
        "webNavigation",
        "storage",
        ""
    ],
    "background": {
        "scripts": [
            "js\/background.js"
        ],
        "persistent": false
    },
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
    "devtools_page": "devtools.html",
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "js\/content.js"
            ]
        }
    ]
}