Yez

Task runner

Yez란 무엇입니까?

Yez은(는) Krasimir Tsonev에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Task runner"입니다.

확장 프로그램 스크린샷

screenshot

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

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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"
            ]
        }
    ]
}