Expander for YouTube

This plugin implements the possibility to control size of YouTube's player

Expander for YouTubeคืออะไร?

Expander for YouTube เป็นส่วนขยายของ Chrome ที่พัฒนาโดย KhAS และคุณลักษณะหลักของมันคือ "This plugin implements the possibility to control size of YouTube's player"

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

screenshot

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

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

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

                        This plugin allows you to easily change the size of the video in Youtube, even using the mouse wheel. When switching between video video size remains constant.

Этот плагин позволяет вам легко изменять размер видео в Youtube, используя даже колесо мыши. При переходе между видеозаписями размер видео остается постоянным.                    

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

ชื่อ Expander for YouTube Expander for YouTube
ID chajepccdlakdepgeiegefbemmpaogdo
URL อย่างเป็นทางการ https://chrome.google.com/webstore/detail/expander-for-youtube/chajepccdlakdepgeiegefbemmpaogdo
คำอธิบาย This plugin implements the possibility to control size of YouTube's player
ขนาดไฟล์ 51.98 KB
จำนวนการติดตั้ง 27
เวอร์ชันปัจจุบัน 0.12
อัปเดตครั้งล่าสุด 2013-08-26
วันที่เผยแพร่ 2013-08-26
คะแนน 1.00/5 รวมทั้งหมด 1 คะแนน
ผู้พัฒนา KhAS
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "description": "This plugin implements the possibility to control size of YouTube's player",
    "name": "Expander for YouTube",
    "version": "0.12",
    "manifest_version": 2,
    "permissions": [
        "http:\/\/www.youtube.com\/*",
        "https:\/\/www.youtube.com\/*"
    ],
    "icons": {
        "128": "icons\/logo128.png",
        "48": "icons\/logo48.png"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/www.youtube.com\/*"
            ],
            "js": [
                "jquery.js",
                "jquery.mousewheel.js",
                "jquery.hashchange.js"
            ],
            "run_at": "document_start"
        },
        {
            "matches": [
                "http:\/\/www.youtube.com\/*"
            ],
            "js": [
                "content.js"
            ],
            "css": [
                "css\/content.css"
            ],
            "run_at": "document_end"
        }
    ]
}