Youtube RSS

This plugin adds the RSS button back to Youtube.

Что такое Youtube RSS?

Youtube RSS - это расширение Chrome, разработанное rtdegrandis, и его основная функция - "This plugin adds the RSS button back to Youtube.".

Снимки экрана расширения

screenshot
screenshot

Скачать файл CRX расширения Youtube RSS

Скачайте файлы расширений Youtube RSS в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        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.                    

Основная информация о расширении

Название Youtube RSS Youtube RSS
ID cmkhdimgaondkfghelifknnpicdajeim
Официальный URL https://chromewebstore.google.com/detail/youtube-rss/cmkhdimgaondkfghelifknnpicdajeim
Описание This plugin adds the RSS button back to Youtube.
Размер файла 126 KB
Количество установок 516
Текущая Версия 1.0.7
Последнее Обновление 2022-10-31
Дата публикации 2020-04-07
Рейтинг 3.14/5 Всего 7 оценок
Разработчик rtdegrandis
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://degrandis.github.io/Youtube-rss-chrome-plugin/
URL страницы помощи https://github.com/DeGrandis/Youtube-rss-chrome-plugin/issues
Поддерживаемые языки 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"
            ]
        }
    ]
}