YouTube Chronological Order

Watch all videos from a channel in chronological order

Vad är YouTube Chronological Order?

YouTube Chronological Order är en Chrome-tillägg utvecklad av Sleek Panther, och dess huvudfunktion är "Watch all videos from a channel in chronological order".

Tilläggsskärmbilder

screenshot
screenshot
screenshot

Ladda ner YouTube Chronological Order-förlängningens CRX-fil

Ladda ner YouTube Chronological Order-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        Intended to help you binge all the videos from a channel oldest to newest easily & simply

1) Go to the Videos tab of a channel
2) Sort by "Date added (oldest)"
3) Play the oldest video
4) Click the extension icon or Alt+P keyboard shortcut

This gets you to YouTube's auto-generated User List playlist in chronological order.

Don't worry if the current video number is always 20 or doesn't look right, it will still play oldest to newest.                    

Grundläggande Information om Tillägg

Namn YouTube Chronological Order YouTube Chronological Order
ID bbceafimilifndeinlddcbfocipebfek
Officiell webbadress https://chrome.google.com/webstore/detail/youtube-chronological-ord/bbceafimilifndeinlddcbfocipebfek
Beskrivning Watch all videos from a channel in chronological order
Filstorlek 5.72 MB
Antal Installationer 13,439
Aktuell Version 1.0.3
Senast Uppdaterad 2023-07-22
Publiceringsdatum 2020-04-09
Betyg 3.82/5 Totalt 106 Betyg
Utvecklare Sleek Panther
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://github.com/SleekPanther/youtube-chronological-order
Hjälpsida URL https://github.com/SleekPanther/youtube-chronological-order/issues
URL till Sekretesspolicy Sidan https://github.com/SleekPanther/youtube-chronological-order/blob/master/privacy.md
Stödda Språk en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "YouTube Chronological Order",
    "description": "Watch all videos from a channel in chronological order",
    "version": "1.0.3",
    "version_name": "1.0.3",
    "page_action": {
        "default_icon": "assets\/icons\/chronological-icon-16.png",
        "default_title": "Alt+P (Create oldest to newest playlist)"
    },
    "permissions": [
        "declarativeContent",
        "activeTab"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "commands": {
        "appendToUrl": {
            "suggested_key": {
                "default": "Alt+P"
            },
            "description": "Create oldest to newest playlist"
        }
    },
    "icons": {
        "16": "assets\/icons\/chronological-icon-16.png",
        "48": "assets\/icons\/chronological-icon-48.png",
        "128": "assets\/icons\/chronological-icon-128.png"
    }
}