Youtube RSS

This plugin adds the RSS button back to Youtube.

Was ist Youtube RSS?

Youtube RSS ist eine Chrome-Erweiterung, die von rtdegrandis entwickelt wurde, und ihr Hauptmerkmal ist "This plugin adds the RSS button back to Youtube.".

Erweiterungsscreenshots

screenshot
screenshot

Youtube RSS-Erweiterungs-CRX-Datei herunterladen

Laden Sie Youtube RSS-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name Youtube RSS Youtube RSS
ID cmkhdimgaondkfghelifknnpicdajeim
Offizielle URL https://chromewebstore.google.com/detail/youtube-rss/cmkhdimgaondkfghelifknnpicdajeim
Beschreibung This plugin adds the RSS button back to Youtube.
Dateigröße 126 KB
Installationsanzahl 516
Aktuelle Version 1.0.7
Letztes Update 2022-10-31
Veröffentlichungsdatum 2020-04-07
Bewertung 3.14/5 Insgesamt 7 Bewertungen
Entwickler rtdegrandis
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://degrandis.github.io/Youtube-rss-chrome-plugin/
Hilfeseite URL https://github.com/DeGrandis/Youtube-rss-chrome-plugin/issues
Unterstützte Sprachen 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"
            ]
        }
    ]
}