URL Cleaner

Remove unwanted '&list=...' from YouTube™ video links so that only the selected video plays and not the whole default playlist.

Co to jest URL Cleaner?

URL Cleaner to rozszerzenie Chrome opracowane przez the_man994, a jego główną funkcją jest „Remove unwanted '&list=...' from YouTube™ video links so that only the selected video plays and not the whole default playlist.”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia URL Cleaner

Pobierz pliki rozszerzeń URL Cleaner w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        When enabled this extension will remove the '&list=...." information from YouTube™ links so that the player only load and plays the clicked video.

Too often YouTubers will let the default ordering of playlist with the videos playing in reverse order (newest to oldest, annoying for a web-series) or you simply want to watch a specific video and not everything on someone's channel.

Also useful for ChromeCast devices that doesn't detect when you disable Auto-play in a playlist.                    

Podstawowe informacje o rozszerzeniu

Nazwa URL Cleaner URL Cleaner
ID klhajccboaijdbimabocoenlbakipghl
Oficjalny URL https://chrome.google.com/webstore/detail/url-cleaner/klhajccboaijdbimabocoenlbakipghl
Opis Remove unwanted '&list=...' from YouTube™ video links so that only the selected video plays and not the whole default playlist.
Rozmiar pliku 12.97 KB
Liczba instalacji 109
Aktualna Wersja 1.1
Ostatnia Aktualizacja 2014-08-16
Data Publikacji 2014-08-16
Ocena 4.00/5 Łącznie 6 Oceny
Deweloper the_man994
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://github.com/M4nuski/URL-Cleaner
Obsługiwane Języki en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "URL Cleaner",
    "description": "Remove unwanted '&list=...' from YouTube\u2122 video links so that only the selected video plays and not the whole default playlist.",
    "version": "1.1",
    "icons": {
        "16": "YUC_icon16.png",
        "48": "YUC_icon48.png",
        "128": "YUC_icon128.png"
    },
    "permissions": [
        "storage",
        "webRequest",
        "webRequestBlocking",
        "*:\/\/www.youtube.com\/*"
    ],
    "browser_action": {
        "default_icon": "YUC_icon128.png",
        "default_popup": "YUC_options.html"
    },
    "background": {
        "scripts": [
            "YUC_script.js"
        ]
    }
}