YouTube Sort Subscriptions

Sort YouTube video subscriptions by interest.

YouTube Sort Subscriptions là gì?

YouTube Sort Subscriptions là một tiện ích mở rộng Chrome được phát triển bởi Nathan Lichtlé, và tính năng chính của nó là "Sort YouTube video subscriptions by interest.".

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

screenshot

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

Tải xuống các tệp mở rộng YouTube Sort 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

                        Do you have tons of YouTube subscriptions and sometimes miss video releases from channels you usually watch? This lightweight extension will sort your YouTube subscription videos by interest. 

It will reorder items in the "Today" section in your YouTube subscriptions page (https://www.youtube.com/feed/subscriptions). The extension does not add, remove or change any content except from re-ordering the videos. Videos with equal interest will be left ordered by release date.

Interest is defined as number of videos viewed from a channel, so videos from channel you've watched the most will appear first in the subscriptions page. However, the extension does not use the watch history so it will only start counting from the moment it is installed. As such, it will not have a lot of impact and should be left in the background for some time before seeing its effects.

Clicking on the extension icon will display the number of videos viewed from each channel, giving you an overview of which channels you watch the most (including channels you may not be subscribed to). Each channel count can be reset to 0 by clicking on the cross on its left. 

The extension does not collect, transmit or share any information, personal or otherwise, nor uses any third-party analytics or advertising frameworks.

Source code: https://github.com/nathanlct/youtube-sort-subscriptions                    

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

Tên YouTube Sort Subscriptions YouTube Sort Subscriptions
ID iefhgledaaogappbeeabcapnhbdajkec
URL Chính Thức https://chromewebstore.google.com/detail/youtube-sort-subscription/iefhgledaaogappbeeabcapnhbdajkec
Mô tả Sort YouTube video subscriptions by interest.
Kích Thước Tệp 1.24 MB
Số Lần Cài Đặt 183
Phiên Bản Hiện Tại 1.0.0
Cập Nhật Lần Cuối 2021-12-24
Ngày Phát Hành 2021-12-23
Nhà Phát Triển Nathan Lichtlé
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/nathanlct/youtube-sort-subscriptions
URL Trang Chính Sách Bảo Mật https://github.com/nathanlct/youtube-sort-subscriptions/blob/master/PRIVACY.md
Ngôn Ngữ Được Hỗ Trợ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "YouTube Sort Subscriptions",
    "description": "Sort YouTube video subscriptions by interest.",
    "version": "1.0.0",
    "icons": {
        "16": "\/images\/icon_yt_16.png",
        "32": "\/images\/icon_yt_32.png",
        "48": "\/images\/icon_yt_48.png",
        "128": "\/images\/icon_yt_128.png"
    },
    "author": "Nathan Lichtl\u00e9",
    "homepage_url": "https:\/\/github.com\/nathanlct\/youtube-sort-subscriptions",
    "manifest_version": 3,
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.youtube.com\/feed\/subscriptions"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "background": {
        "service_worker": "background.js"
    },
    "permissions": [
        "storage",
        "tabs",
        "scripting"
    ],
    "host_permissions": [
        "*:\/\/*.youtube.com\/*"
    ],
    "action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "\/images\/icon_yt_16.png",
            "32": "\/images\/icon_yt_32.png",
            "48": "\/images\/icon_yt_48.png",
            "128": "\/images\/icon_yt_128.png"
        }
    }
}