Yez

Task runner

Co to jest Yez?

Yez to rozszerzenie Chrome opracowane przez Krasimir Tsonev, a jego główną funkcją jest „Task runner”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Yez

Pobierz pliki rozszerzeń Yez w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa Yez Yez
ID acbhddemkmodoahhmnphpcfmcfgpjmap
Oficjalny URL https://chromewebstore.google.com/detail/yez/acbhddemkmodoahhmnphpcfmcfgpjmap
Opis Task runner
Rozmiar pliku 626 KB
Liczba instalacji 219
Aktualna Wersja 0.2.0
Ostatnia Aktualizacja 2016-05-28
Data Publikacji 2016-05-28
Ocena 4.29/5 Łącznie 7 Oceny
Deweloper Krasimir Tsonev
Typ Płatności free
Strona Rozszerzenia https://github.com/krasimir/yez
Adres URL Strony Pomocy https://github.com/krasimir/yez/issues
Obsługiwane Języki 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"
            ]
        }
    ]
}