Yez

Task runner

Yezとは何ですか?

YezはKrasimir Tsonevによって開発されたChromeの拡張機能で、その主な機能は「Task runner」です。

拡張機能のスクリーンショット

screenshot

Yez拡張機能のCRXファイルをダウンロード

Yez拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

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