Hide Youtube Likes/Dislikes
Hides ratings information on Youtube videos.
Hide Youtube Likes/Dislikes란 무엇입니까?
Hide Youtube Likes/Dislikes은(는) rmitaldev에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Hides ratings information on Youtube videos."입니다.
확장 프로그램 스크린샷
Hide Youtube Likes/Dislikes 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
UPDATE 1.0.2: Now handles Youtube's new sentiment bar, where dislikes are already hidden automatically. This extension gives users the option to hide the number of "likes" on a video and/or the entire sentiment bar on Youtube. Feel free to continue rating videos without worrying what other people think of it, or turn off that feature completely if you want to watch and enjoy videos without any pressure! NOTE: You will need to restart your browser for the changes to take effect! If you have any other trouble with this extension, please leave a comment in the support page and I will get to you as soon as I can. Thanks!
확장 프로그램 기본 정보
이름 | Hide Youtube Likes/Dislikes |
ID | bndphnggikgjkhappgdnhijgnlafnfph |
공식 URL | https://chromewebstore.google.com/detail/hide-youtube-likesdislike/bndphnggikgjkhappgdnhijgnlafnfph |
설명 | Hides ratings information on Youtube videos. |
파일 크기 | 73.07 KB |
설치 횟수 | 641 |
현재 버전 | 1.0.2 |
최근 업데이트 | 2023-05-09 |
출시 날짜 | 2020-02-24 |
평점 | 4.38/5 총 32 개의 평점 |
개발자 | rmitaldev |
이메일 | [email protected] |
결제 유형 | free |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Hide Youtube Likes\/Dislikes", "version": "1.0.2", "description": "Hides ratings information on Youtube videos.", "manifest_version": 2, "permissions": [ "activeTab", "declarativeContent", "storage" ], "background": { "scripts": [ "background.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "*:\/\/*.youtube.com\/*" ], "js": [ "jquery.js", "arrive.js", "contentscript.js" ], "run_at": "document_start" } ], "page_action": { "default_popup": "popup.html", "default_icon": { "16": "images\/ico_16.png", "32": "images\/ico_32.png", "48": "images\/ico_48.png", "128": "images\/ico_128.png" } }, "icons": { "16": "images\/ico_16.png", "32": "images\/ico_32.png", "48": "images\/ico_48.png", "128": "images\/ico_128.png" } } |