Quickview for YouTube

Allows you to quickly view videos from your subscriptions feed page

Quickview for YouTubeคืออะไร?

Quickview for YouTube เป็นส่วนขยายของ Chrome ที่พัฒนาโดย ngzhian และคุณลักษณะหลักของมันคือ "Allows you to quickly view videos from your subscriptions feed page"

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

screenshot
screenshot

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

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

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

                        Watch videos without leaving your YouTube subscriptions feed page, and possibly without ever clicking.

Hover over thumbnails in your feed page to view that video. How about thumbnails at the side of a video page? That works too!

Q: What's better than a nice subscriptions feed page that you can scroll forever?
A: A page where you can scroll forever AND watch videos.

P.S. This is open-source at https://github.com/ngzhian/quickview

-LATEST CHANGES-
2.5.0
works on more pages now (homepage, channel page, video page)
2.4.0
Works with new YouTube design now!
2.3.0
Set your preferred hover time (how long the pointer has to stay above the thumbnail to trigger Quickview)
It now shows view count, like count, dislike count
2.2.0
Set your preferred playback rate in the brand new options page! Click on the QuickView icon in the toolbar and select options.
2.1.1
Temp fix for comments text not showing up: https://code.google.com/p/gdata-issues/issues/detail?id=7969
2.1.0
Code cleanup, not much visible changes for the user
2.0.0
Fixed to work with YouTube API v3.
1.11.0
Bug fixes due to YT changing its HTML.
Looks prettier and more consistent with YT's native style :)
1.10.1
Fix hover not working on some thumbnails due to changes in class name, it should be more robust to any changes on YT side now.
1.9.1
Updated to use https by default                    

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

ชื่อ Quickview for YouTube Quickview for YouTube
ID jfocolikmfgljlbblhgpkcjlpehnapkm
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/quickview-for-youtube/jfocolikmfgljlbblhgpkcjlpehnapkm
คำอธิบาย Allows you to quickly view videos from your subscriptions feed page
ขนาดไฟล์ 78.74 KB
จำนวนการติดตั้ง 647
เวอร์ชันปัจจุบัน 2.5.0
อัปเดตครั้งล่าสุด 2018-09-10
วันที่เผยแพร่ 2018-09-09
คะแนน 4.13/5 รวมทั้งหมด 31 คะแนน
ผู้พัฒนา ngzhian
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/ngzhian/quickview-chrome
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "version": "2.5.0",
    "name": "Quickview for YouTube",
    "description": "Allows you to quickly view videos from your subscriptions feed page",
    "icons": {
        "16": "img\/icon16.png",
        "48": "img\/icon48.png",
        "128": "img\/icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/www.youtube.com\/*"
            ],
            "css": [
                "qv.css"
            ],
            "js": [
                "lib\/jquery-1.9.1.min.js",
                "lib\/hoverIntent.min.js",
                "lib\/jquery-ui-1.10.2.custom.js",
                "qv.js",
                "lib\/youtubewidgetapi.js"
            ],
            "run_at": "document_end"
        }
    ],
    "options_ui": {
        "page": "options.html",
        "chrome_style": true
    },
    "permissions": [
        "storage"
    ]
}