Duration Sort for YouTube Subscriptions
Adds a button to re-sort YouTube subscriptions by their duration.
什麼是Duration Sort for YouTube Subscriptions?
Duration Sort for YouTube Subscriptions是由Evan Kohilas開發的Chrome擴展程式,該擴展的主要功能是“Adds a button to re-sort YouTube subscriptions by their duration.”。
擴展截圖
下載Duration Sort for YouTube Subscriptions擴展crx文件
下載Duration Sort for YouTube Subscriptions擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
If you've ever wanted to navigate through your YouTube subscription feed by video duration, this extension will let you do that through a native sorting button. 擴展基本資訊
| 名稱 | |
| ID | ogelmlojlklfapffhdeelmfpkpdbocha |
| 官方網址 | https://chrome.google.com/webstore/detail/duration-sort-for-youtube/ogelmlojlklfapffhdeelmfpkpdbocha |
| 簡介 | Adds a button to re-sort YouTube subscriptions by their duration. |
| 檔案大小 | 27.18 KB |
| 安裝次數 | 95 |
| 目前版本 | 0.1.0 |
| 更新時間 | 2021-03-24 |
| 上架時間 | 2021-03-23 |
| 評分 | 2.33/5 共 3 次評分 |
| 開發者 | Evan Kohilas |
| 電子郵箱 | [email protected] |
| 付費類型 | free |
| 擴展官網 | https://github.com/ekohilas/youtube-duration-sort |
| 支援的語言 | en-GB |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Duration Sort for YouTube Subscriptions",
"short_name": "Duration Sort",
"description": "Adds a button to re-sort YouTube subscriptions by their duration.",
"version": "0.1.0",
"manifest_version": 3,
"author": {
"name": "Evan Kohilas",
"url": "https:\/\/github.com\/ekohilas\/youtube-duration-sort"
},
"content_scripts": [
{
"matches": [
"https:\/\/www.youtube.com\/feed\/subscriptions"
],
"js": [
"content.js"
]
}
],
"background": {
"service_worker": "background.js"
},
"action": {
"default_popup": "popup.html",
"default_icon": {
"16": "\/images\/icon_16.png",
"32": "\/images\/icon_32.png",
"48": "\/images\/icon_48.png",
"128": "\/images\/icon_128.png"
}
},
"icons": {
"16": "\/images\/icon_16.png",
"32": "\/images\/icon_32.png",
"48": "\/images\/icon_48.png",
"128": "\/images\/icon_128.png"
},
"options_page": "options.html"
} | |