Watch Next: YouTube

Watch Next lets you tell YouTube which video you want to watch after this one.

Watch Next: YouTubeคืออะไร?

Watch Next: YouTube เป็นส่วนขยายของ Chrome ที่พัฒนาโดย http://pobe16.github.io และคุณลักษณะหลักของมันคือ "Watch Next lets you tell YouTube which video you want to watch after this one."

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

screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Watch Next: YouTube

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

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

                        Ever saw a couple of YouTube videos and wanted to watch them just right after the one you are watching now? Make a Watch Next playlist - it plays automatically when you finish watching the current video.

You can add a video to Watch Next playlist from any thumbnail on YouTube, or from any link to YouTube (right-click menu).

Have fun making playlists!

Icons by Alexander Moore

Changes in version 1.11.5

Changes in version 1.11.4
* removed reference to unused permission

Changes in version 1.11.3
* fixed archive not showing when playlist empty and user not logged in.

Changes in version 1.11.2
* hopefully fixed the missing context menu option

Changes in version 1.11.1
* fixed missing styles for account page

Changes in version 1.11.0
- new way of playing videos from popup window - now you have to click on the thumbnail
- new indicator for playlist editing
- new look of popup window
- added ability to create account - it will be useful later in the iOS app which is currently in development
* fixed the popup window not scrolling past the archive thumbnails                    

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

ชื่อ Watch Next: YouTube Watch Next: YouTube
ID niibinkldkaebmhbgigaadpoooonlagb
URL อย่างเป็นทางการ https://chrome.google.com/webstore/detail/watch-next-youtube/niibinkldkaebmhbgigaadpoooonlagb
คำอธิบาย Watch Next lets you tell YouTube which video you want to watch after this one.
ขนาดไฟล์ 59.79 KB
จำนวนการติดตั้ง 3,116
เวอร์ชันปัจจุบัน 1.11.5
อัปเดตครั้งล่าสุด 2021-10-16
วันที่เผยแพร่ 2020-05-08
คะแนน 4.58/5 รวมทั้งหมด 119 คะแนน
ผู้พัฒนา http://pobe16.github.io
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Watch Next: YouTube",
    "short_name": "Watch Next",
    "description": "Watch Next lets you tell YouTube which video you want to watch after this one.",
    "version": "1.11.5",
    "permissions": [
        "https:\/\/youtube.com\/",
        "contextMenus",
        "storage"
    ],
    "content_security_policy": "script-src 'self' https:\/\/cdn.firebase.com https:\/\/www.gstatic.com\/ https:\/\/*.firebaseio.com https:\/\/www.googleapis.com https:\/\/apis.google.com; object-src 'self'",
    "background": {
        "persistent": true,
        "page": "background.html"
    },
    "browser_action": {
        "default_icon": "icons\/icon32.png",
        "default_popup": "popup.html"
    },
    "icons": {
        "16": "icons\/icon16.png",
        "32": "icons\/icon32.png",
        "64": "icons\/icon64.png",
        "128": "icons\/icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.youtube.com\/*",
                "*:\/\/youtube.com\/*"
            ],
            "css": [
                "playnextbutton.css"
            ],
            "js": [
                "scripts\/config.js",
                "scripts\/playnextbutton.js"
            ]
        },
        {
            "matches": [
                "*:\/\/*.youtube.com\/*"
            ],
            "exclude_matches": [
                "*:\/\/*\/watch*list=*"
            ],
            "js": [
                "scripts\/config.js",
                "scripts\/playnext.js"
            ]
        }
    ],
    "web_accessible_resources": [
        "icons\/icon_add_16.png",
        "icons\/icon_add_22.png",
        "icons\/icon_add_32.png",
        "icons\/icon_delete_16.png",
        "icons\/icon_delete_22.png",
        "icons\/icon_delete_32.png",
        "icons\/icon_disabled_32.png",
        "icons\/icon_done_16.png",
        "icons\/icon_done_22.png",
        "icons\/icon_fwd_22.png",
        "icons\/icon16.png",
        "icons\/icon32.png",
        "icons\/icon_info.png"
    ]
}