Play it once, Sam

...for old times' sake. Play entries of YouTube's watch later list without advancing to next title.

Play it once, Samคืออะไร?

Play it once, Sam เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Sören Köhler และคุณลักษณะหลักของมันคือ "...for old times' sake. Play entries of YouTube's watch later list without advancing to next title."

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

screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Play it once, Sam

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

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

                        ----- DEPRECATED -----

You may still use this extension, but it will no longer be maintained.

Please use Tampermonkey and the following script:

https://github.com/soerenkoehler/monkey-scripts/blob/master/Play%20it%20once%20Sam.user.js

----------------------------

Assumption: You use YouTube's watch later list not as a real playlist but to collect interesting (and not necessarily related) videos.

Problem: When you start a single video from the playlist page, the following videos (related or not) will be played too, automatically.

Old solution: An extension called NextVid Stopper which does not work anymore.

New solution: This extension ;) It redirects the start of a single video from the watch later page to the single video player instead of the playlist player. You can still click the "Play All" button to play the list as a whole.

---

History:

v0.2: The single play behaviour can be configured for all playlists or for watch lists only.

v0.1: Initial release, works only for the watch list.

---

Known problems:

If you have the watch later list already playing in one tab and, in another tab, open a single video from the watch later list YouTube somehow makes an additional redirect and you get two entries in the browser history.

---

Required Permissions:

"storage" to save the options mode to chrome

"tabs" to verify that a request comes from the watch later list

"webRequest", "webRequestBlocking" to redirect the request to the correct player

"*://www.youtube.com/" to access YouTube                    

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

ชื่อ Play it once, Sam Play it once, Sam
ID kkenhaebpnoocbenliedhneidccbbnhf
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/play-it-once-sam/kkenhaebpnoocbenliedhneidccbbnhf
คำอธิบาย ...for old times' sake. Play entries of YouTube's watch later list without advancing to next title.
ขนาดไฟล์ 13.04 KB
จำนวนการติดตั้ง 52
เวอร์ชันปัจจุบัน 0.2
อัปเดตครั้งล่าสุด 2017-04-05
วันที่เผยแพร่ 2017-04-05
คะแนน 2.60/5 รวมทั้งหมด 5 คะแนน
ผู้พัฒนา Sören Köhler
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "version": "0.2",
    "name": "Play it once, Sam",
    "description": "...for old times' sake. Play entries of YouTube's watch later list without advancing to next title.",
    "icons": {
        "128": "icon_mode0_128.png"
    },
    "page_action": {
        "default_icon": {
            "19": "icon_mode0_19.png",
            "38": "icon_mode0_38.png"
        },
        "default_popup": "options.html"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "permissions": [
        "storage",
        "tabs",
        "webRequest",
        "webRequestBlocking",
        "*:\/\/www.youtube.com\/"
    ]
}