Controls for YouTube

A Chrome extension that provides useful controls and options for open YouTube tabs.

Controls for YouTubeคืออะไร?

Controls for YouTube เป็นส่วนขยายของ Chrome ที่พัฒนาโดย http://jamesturner.im และคุณลักษณะหลักของมันคือ "A Chrome extension that provides useful controls and options for open YouTube tabs."

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

screenshot
screenshot

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

ดาวน์โหลดไฟล์ส่วนขยาย Controls for YouTube ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                                            

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Controls for YouTube Controls for YouTube
ID ifhhlbbnclgidbapibofmfoifooibiad
URL อย่างเป็นทางการ https://chrome.google.com/webstore/detail/controls-for-youtube/ifhhlbbnclgidbapibofmfoifooibiad
คำอธิบาย A Chrome extension that provides useful controls and options for open YouTube tabs.
ขนาดไฟล์ 19.48 KB
จำนวนการติดตั้ง 57
เวอร์ชันปัจจุบัน 0.1
อัปเดตครั้งล่าสุด 2013-08-19
วันที่เผยแพร่ 2013-08-19
คะแนน 4.00/5 รวมทั้งหมด 1 คะแนน
ผู้พัฒนา http://jamesturner.im
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย http://jamesturner.im/controls-for-youtube
URL หน้าช่วยเหลือ http://jamesturner.im/controls-for-youtube
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Controls for YouTube",
    "description": "A Chrome extension that provides useful controls and options for open YouTube tabs.",
    "version": "0.1",
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "author": "James Turner",
    "homepage_url": "http:\/\/jamesturner.im\/controls-for-youtube",
    "permissions": [
        "tabs",
        "*:\/\/*.youtube.com\/watch*",
        "*:\/\/*.youtube.com\/results*"
    ],
    "web_accessible_resources": [
        "js\/*.js"
    ],
    "content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com; object-src 'self'",
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.youtube.com\/watch*",
                "*:\/\/*.youtube.com\/results*"
            ],
            "js": [
                "js\/controls.js"
            ],
            "css": [
                "css\/style.css"
            ],
            "run_at": "document_start"
        }
    ],
    "background": {
        "scripts": [
            "js\/background.js"
        ],
        "persistent": false
    }
}