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.”。

扩展截图

screenshot
screenshot
screenshot

下载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.                    

扩展基本信息

名称 Duration Sort for YouTube Subscriptions Duration Sort for YouTube Subscriptions
ID ogelmlojlklfapffhdeelmfpkpdbocha
官方URL 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"
}