remove YouTube TV button
removes 'play on TV' button on YouTube
remove YouTube TV button란 무엇입니까?
remove YouTube TV button은(는) Sveagruva에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "removes 'play on TV' button on YouTube"입니다.
확장 프로그램 스크린샷
remove YouTube TV button 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
'play on TV' button is annoying element of YouTube and also is kind of dangerous. You no longer need to worry about accidentally pressing that button because it doesn't exist anymore after installing this extension. ============== 0.1.3 update fixes 'play on TV' button for youtube redesign clicking no longer disables extension. if you see green checkmark it will perform same action as it did in 0.1.2.
확장 프로그램 기본 정보
이름 | remove YouTube TV button |
ID | lcblinegofgihklfnclgedlfcolbacpl |
공식 URL | https://chromewebstore.google.com/detail/remove-youtube-tv-button/lcblinegofgihklfnclgedlfcolbacpl |
설명 | removes 'play on TV' button on YouTube |
파일 크기 | 27.89 KB |
설치 횟수 | 3,748 |
현재 버전 | 0.1.3 |
최근 업데이트 | 2022-11-09 |
출시 날짜 | 2020-12-15 |
평점 | 4.91/5 총 56 개의 평점 |
개발자 | Sveagruva |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://github.com/sveagruva/remove_youtube_tv_button |
지원되는 언어 | en,ru |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "version": "0.1.3", "name": "__MSG_name__", "description": "__MSG_app_description__", "content_scripts": [ { "matches": [ "*:\/\/*.youtube.com\/*" ], "js": [ "main.js" ], "css": [ "style.css" ], "run_at": "document_end", "all_frames": true } ], "icons": { "16": "icons\/16_disabled.png", "48": "icons\/48_disabled.png", "128": "icons\/128_disabled.png" }, "permissions": [ "storage" ], "background": { "scripts": [ "background.js" ] }, "default_locale": "en", "homepage_url": "https:\/\/github.com\/sveagruva\/remove_youtube_tv_button", "browser_action": { "default_icon": { "16": "icons\/16_disabled.png", "48": "icons\/48_disabled.png", "128": "icons\/128_disabled.png" } } } |