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 هو إضافة Chrome تم تطويرها بواسطة Evan Kohilas، والميزة الرئيسية لها هي "Adds a button to re-sort YouTube subscriptions by their duration.".

لقطات شاشة التمديد

screenshot
screenshot
screenshot

تحميل ملف CRX للإضافة Duration Sort for YouTube Subscriptions

قم بتنزيل ملفات الامتداد Duration Sort for YouTube Subscriptions بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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"
}