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