YouTube™ Stop Button
Adds a stop button to the player interface to unload the player and stop the video from buffering any time.
YouTube™ Stop Buttonคืออะไร?
YouTube™ Stop Button เป็นส่วนขยายของ Chrome ที่พัฒนาโดย unixeco และคุณลักษณะหลักของมันคือ "Adds a stop button to the player interface to unload the player and stop the video from buffering any time."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย YouTube™ Stop Button
ดาวน์โหลดไฟล์ส่วนขยาย YouTube™ Stop Button ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
This extension unloads the YouTube player without affecting the actual page. Removing the player eliminates any network requests to fetch or buffer the video. This is especially useful when you wish to watch the video later without YouTube preloading it and consuming your bandwidth. Key Features: 1. Disables automatic buffering 2. Halts player-related network activities 3. Unloads the player while keeping the page intact The extension introduces a new "Stop" button located next to the "Play" button. Click the "Stop" button whenever you want to unload the player. Additional Notes: 1. This extension exclusively supports the HTML5 player, offering no compatibility with Youtube's old Flash player. 2. Built on manifest v3, this extension adheres to the specified guidelines. 3. It only operates when the "Stop" button is triggered and remains in an idle state at all other times, ensuring no background activities are running.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | YouTube™ Stop Button |
ID | ahcnccjmpopcpcfhpoddjiglaoiaeaad |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/youtube-stop-button/ahcnccjmpopcpcfhpoddjiglaoiaeaad |
คำอธิบาย | Adds a stop button to the player interface to unload the player and stop the video from buffering any time. |
ขนาดไฟล์ | 67.08 KB |
จำนวนการติดตั้ง | 1,575 |
เวอร์ชันปัจจุบัน | 0.2.5 |
อัปเดตครั้งล่าสุด | 2024-01-22 |
วันที่เผยแพร่ | 2019-04-28 |
คะแนน | 3.64/5 รวมทั้งหมด 36 คะแนน |
ผู้พัฒนา | unixeco |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://webextension.org/listing/youtube-tools.html?from=stop-button |
URL หน้าช่วยเหลือ | https://webextension.org/listing/youtube-tools.html?from=stop-button |
URL หน้านโยบายความเป็นส่วนตัว | https://add0n.com/policies/unixeco.txt |
ภาษาที่รองรับ | de,en,fr,nl,es,it,pt-BR,pt-PT,ru,zh-CN,ja |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "YouTube\u2122 Stop Button", "description": "__MSG_description__", "default_locale": "en", "version": "0.2.5", "manifest_version": 3, "permissions": [ "storage", "scripting" ], "host_permissions": [ "*:\/\/www.youtube.com\/*" ], "background": { "service_worker": "worker.js" }, "content_scripts": [ { "matches": [ "*:\/\/www.youtube.com\/*" ], "js": [ "\/data\/inject.js" ], "css": [ "\/data\/inject.css" ], "run_at": "document_start", "all_frames": true } ], "homepage_url": "https:\/\/webextension.org\/listing\/youtube-tools.html?from=stop-button", "icons": { "16": "\/data\/icons\/16.png", "32": "\/data\/icons\/32.png", "48": "\/data\/icons\/48.png", "64": "\/data\/icons\/64.png", "128": "\/data\/icons\/128.png", "256": "\/data\/icons\/256.png", "512": "\/data\/icons\/512.png" } } |