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文件
下載Not Interested!擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
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 |
官方網址 | 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" } } |