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은(는) unixeco에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Adds a stop button to the player interface to unload the player and stop the video from buffering any time."입니다.
확장 프로그램 스크린샷
YouTube™ Stop Button 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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" } } |