Youtube RSS

This plugin adds the RSS button back to Youtube.

Co to jest Youtube RSS?

Youtube RSS to rozszerzenie Chrome opracowane przez rtdegrandis, a jego główną funkcją jest „This plugin adds the RSS button back to Youtube.”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot

Pobierz plik CRX rozszerzenia Youtube RSS

Pobierz pliki rozszerzeń Youtube RSS 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

                        Simply add the extension to your browser, click the RSS button, and paste the link into your RSS Reader.  The link is copied to the clipboard when clicked.

Youtube occasionally changes how the site works, so if the plugin is broken PLEASE contact me and I can work on a fix.  Or create an issue on github.  

If you have any issues, report them on the GitHub Repo.                    

Podstawowe informacje o rozszerzeniu

Nazwa Youtube RSS Youtube RSS
ID cmkhdimgaondkfghelifknnpicdajeim
Oficjalny URL https://chromewebstore.google.com/detail/youtube-rss/cmkhdimgaondkfghelifknnpicdajeim
Opis This plugin adds the RSS button back to Youtube.
Rozmiar pliku 126 KB
Liczba instalacji 516
Aktualna Wersja 1.0.7
Ostatnia Aktualizacja 2022-10-31
Data Publikacji 2020-04-07
Ocena 3.14/5 Łącznie 7 Oceny
Deweloper rtdegrandis
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://degrandis.github.io/Youtube-rss-chrome-plugin/
Adres URL Strony Pomocy https://github.com/DeGrandis/Youtube-rss-chrome-plugin/issues
Obsługiwane Języki en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Youtube RSS",
    "version": "1.0.7",
    "manifest_version": 3,
    "description": "This plugin adds the RSS button back to Youtube.",
    "homepage_url": "https:\/\/degrandis.github.io\/Youtube-rss-chrome-plugin\/",
    "icons": {
        "16": "icons\/icon16.png",
        "19": "icons\/icon19.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "default_locale": "en",
    "host_permissions": [
        "https:\/\/www.youtube.com\/watch?v=*"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.youtube.com\/*"
            ],
            "css": [
                "css\/styles.css"
            ],
            "js": [
                "js\/jquery\/jquery-3.5.1.js",
                "src\/inject\/contentScript.js"
            ]
        }
    ]
}