Duration Sort for YouTube Subscriptions

Adds a button to re-sort YouTube subscriptions by their duration.

Duration Sort for YouTube Subscriptions là gì?

Duration Sort for YouTube Subscriptions là một tiện ích mở rộng Chrome được phát triển bởi Evan Kohilas, và tính năng chính của nó là "Adds a button to re-sort YouTube subscriptions by their duration.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Duration Sort for YouTube Subscriptions

Tải xuống các tệp mở rộng Duration Sort for YouTube Subscriptions dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Duration Sort for YouTube Subscriptions Duration Sort for YouTube Subscriptions
ID ogelmlojlklfapffhdeelmfpkpdbocha
URL Chính Thức https://chrome.google.com/webstore/detail/duration-sort-for-youtube/ogelmlojlklfapffhdeelmfpkpdbocha
Mô tả Adds a button to re-sort YouTube subscriptions by their duration.
Kích Thước Tệp 27.18 KB
Số Lần Cài Đặt 95
Phiên Bản Hiện Tại 0.1.0
Cập Nhật Lần Cuối 2021-03-24
Ngày Phát Hành 2021-03-23
Đánh Giá 2.33/5 Tổng số 3 Đánh Giá
Nhà Phát Triển Evan Kohilas
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/ekohilas/youtube-duration-sort
Ngôn Ngữ Được Hỗ Trợ 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"
}