Feed Cleanup for YouTube™
Collapses or hides watched videos within a YouTube feed.
什麼是Feed Cleanup for YouTube™?
Feed Cleanup for YouTube™是由Armandas Jarušauskas開發的Chrome擴展程式,該擴展的主要功能是“Collapses or hides watched videos within a YouTube feed.”。
擴展截圖
下載Feed Cleanup for YouTube™擴展crx文件
下載Feed Cleanup for YouTube™擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
This extension checks your YouTube feed page and collapses or hides all the watched entries, allowing you to focus only on new videos.
IMPORTANT: if you experience any problems, please contact me via "Send Feedback" link in "Details" tab. Reviews are not meant for reporting bugs! Thanks.
Changelog:
2022-02-06
- Fixed element access errors.
2017-09-01
- Updating the code to work with the latest YouTube design.
2016-11-24
- Detection mechanism changed to use the new "progress bar".
2015-04-11
- Updating the code to work with the latest version of YouTube.
2015-01-16
- Adding the "by" line to the clutter list.
2014-08-25
- Some small changes to match the updated subscriptions page.
2014-04-21
- Adding functionality for hiding the watched videos.
2014-03-27
- Updating the extension to support HTTPS.
2013-08-22
- Adding functionality for cleaning-up additionally loaded feed items.
- Updating the list of elements to be hidden.
2013-08-21
- Updating the extension to work with the latest YouTube design. 擴展基本資訊
| 名稱 | |
| ID | jdhiaadoiejmfdpfankpionkocihfbcn |
| 官方網址 | https://chromewebstore.google.com/detail/feed-cleanup-for-youtube/jdhiaadoiejmfdpfankpionkocihfbcn |
| 簡介 | Collapses or hides watched videos within a YouTube feed. |
| 檔案大小 | 223 KB |
| 安裝次數 | 248 |
| 目前版本 | 0.5.2 |
| 更新時間 | 2022-02-06 |
| 上架時間 | 2017-09-01 |
| 評分 | 3.00/5 共 13 次評分 |
| 開發者 | Armandas Jarušauskas |
| 電子郵箱 | [email protected] |
| 付費類型 | free |
| 擴展官網 | https://github.com/armandas/YouTube-Feed-Cleanup |
| 支援的語言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "Feed Cleanup for YouTube\u2122",
"description": "Collapses or hides watched videos within a YouTube feed.",
"version": "0.5.2",
"icons": {
"128": "yfc_128.png"
},
"background": {
"scripts": [
"background.js"
]
},
"content_scripts": [
{
"matches": [
"https:\/\/www.youtube.com\/feed\/subscriptions"
],
"js": [
"yfc.js"
]
}
],
"page_action": {
"default_icon": "yfc_19.png",
"default_title": "Feed Cleanup",
"default_popup": "yfc_popup.html"
},
"permissions": [
"storage"
]
} | |