Not Interested!
Single-button resolution to quickly mark YouTube videos and playlists as not interested.
Not Interested!란 무엇입니까?
Not Interested!은(는) https://notinterested.makestuffstudio.com.au에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Single-button resolution to quickly mark YouTube videos and playlists as not interested."입니다.
확장 프로그램 스크린샷
Not Interested! 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Simply hover over a video's details and press the hotkey to mark the video as not interested. Default hotkey ALT+Q. Don't forget that you can change extension hotkeys at the following webpage: chrome://extensions/shortcuts Currently only works in English. Following a recent YouTube update, homepage videos will highlight in the area you need to hover to mark the video as Not Interested! # Changelog: Version 2.3 - Fixed a permissions issue that had buttons appearing unnecessarily on music.youtube.com. - Adjusted some of the CSS styling to make it fit better in some windows. Version 2.2 As of V2.2 you can now remove videos from a playlist using the same hotkey. Removing videos from your watch later playlist just got easier!
확장 프로그램 기본 정보
이름 | Not Interested! |
ID | icpmnnhakoihehdakkgpljphfihapjng |
공식 URL | https://chromewebstore.google.com/detail/not-interested/icpmnnhakoihehdakkgpljphfihapjng |
설명 | Single-button resolution to quickly mark YouTube videos and playlists as not interested. |
파일 크기 | 39.36 KB |
설치 횟수 | 639 |
현재 버전 | 2.3 |
최근 업데이트 | 2023-10-27 |
출시 날짜 | 2021-06-26 |
평점 | 3.90/5 총 20 개의 평점 |
개발자 | https://notinterested.makestuffstudio.com.au |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | http://notinterested.makestuffstudio.com.au/ |
지원되는 언어 | en-GB |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Not Interested!", "description": "Single-button resolution to quickly mark YouTube videos and playlists as not interested.", "version": "2.3", "manifest_version": 3, "background": { "service_worker": "background.js" }, "commands": { "mark-video": { "suggested_key": { "default": "Alt+Q" }, "description": "Mark hovered as Not interested." } }, "permissions": [ "activeTab", "scripting" ], "host_permissions": [ "https:\/\/www.youtube.com\/*" ], "action": { "default_popup": "popup.html", "default_icon": { "16": "\/images\/NotInterestedV3_16.png", "32": "\/images\/NotInterestedV3_32.png", "48": "\/images\/NotInterestedV3_48.png", "128": "\/images\/NotInterestedV3_128.png" } }, "icons": { "16": "\/images\/NotInterestedV3_16.png", "32": "\/images\/NotInterestedV3_32.png", "48": "\/images\/NotInterestedV3_48.png", "128": "\/images\/NotInterestedV3_128.png" } } |