Yez

Task runner

Yezคืออะไร?

Yez เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Krasimir Tsonev และคุณลักษณะหลักของมันคือ "Task runner"

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Yez

ดาวน์โหลดไฟล์ส่วนขยาย 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"
            ]
        }
    ]
}