YouTube Sub Hider
Extension that hides specified subscriptions
什麼是YouTube Sub Hider?
YouTube Sub Hider是由bggrund開發的Chrome擴展程式,該擴展的主要功能是“Extension that hides specified subscriptions”。
擴展截圖
下載YouTube Sub Hider擴展crx文件
下載YouTube Sub Hider擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
Simple extension that hides specified YouTube channels from your subscriptions page.
Maybe a channel has recently filled your feed with videos you aren't interested in. Maybe a channel started posting a video series you aren't interested in, but you want to remain subscribed for future content. This extension let's you toggle a channel's videos from appearing in your subscription feed without unsubscribing from the channel.
Features:
-"Hide" button next to the channel name on each video
-Popup menu that allows you to enter channels to hide manually, toggle whether a hidden channel is enabled, remove channels that have been hidden, and toggle the extension altogether.
-Saves channel data to your browser for persistence between sessions
-Continues hiding specified channels as you scroll through your subscription feed
Source code: https://github.com/bggrund/YouTubeSubHider 擴展基本資訊
| 名稱 | |
| ID | egehbpolcfiodjjnkmlpfegegpogcefm |
| 官方網址 | https://chromewebstore.google.com/detail/youtube-sub-hider/egehbpolcfiodjjnkmlpfegegpogcefm |
| 簡介 | Extension that hides specified subscriptions |
| 檔案大小 | 13.05 KB |
| 安裝次數 | 95 |
| 目前版本 | 1.2 |
| 更新時間 | 2023-06-12 |
| 上架時間 | 2021-07-20 |
| 評分 | 5.00/5 共 3 次評分 |
| 開發者 | bggrund |
| 電子郵箱 | [email protected] |
| 付費類型 | free |
| 擴展官網 | https://github.com/bggrund/YouTubeSubHider |
| 支援的語言 | en-US |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "YouTube Sub Hider",
"version": "1.2",
"description": "Extension that hides specified subscriptions",
"icons": {
"128": "icon128.png",
"48": "icon48.png",
"16": "icon16.png"
},
"browser_action": {
"default_icon": "icon16.png",
"default_popup": "popup.html"
},
"permissions": [
"storage",
"*:\/\/*.youtube.com\/feed\/subscriptions"
],
"content_scripts": [
{
"matches": [
"*:\/\/*.youtube.com\/feed\/subscriptions"
],
"js": [
"content-script.js"
],
"css": [
"content-script.css"
],
"run_at": "document_idle"
}
]
} | |