Get RSS Feed URL

Retreive RSS feeds URLs from WebSite

Что такое Get RSS Feed URL?

Get RSS Feed URL - это расширение Chrome, разработанное shevabam, и его основная функция - "Retreive RSS feeds URLs from WebSite".

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

screenshot

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

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

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

                        Provides links to the various RSS/Atom feeds of a website.

Indeed, websites do not always provide a direct link to the RSS feed. It is then necessary to look in the source code of the website and find the URL of the feed.

This extension makes it possible to avoid this manipulation because the URLs of the RSS feeds of the website are displayed directly!

In addition, this extension allows you to easily retrieve the RSS feed from a Youtube channel / user, from a subreddit or in a Kickstarter page!                    

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

Название Get RSS Feed URL Get RSS Feed URL
ID kfghpdldaipanmkhfpdcjglncmilendn
Официальный URL https://chromewebstore.google.com/detail/get-rss-feed-url/kfghpdldaipanmkhfpdcjglncmilendn
Описание Retreive RSS feeds URLs from WebSite
Размер файла 190 KB
Количество установок 42,136
Текущая Версия 1.4.1
Последнее Обновление 2020-12-18
Дата публикации 2020-04-13
Рейтинг 4.03/5 Всего 31 оценок
Разработчик shevabam
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://github.com/shevabam/get-rss-feed-url-extension
URL страницы помощи https://github.com/shevabam/get-rss-feed-url-extension/issues
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Get RSS Feed URL",
    "description": "Retreive RSS feeds URLs from WebSite",
    "version": "1.4.1",
    "author": "@shevabam",
    "homepage_url": "https:\/\/github.com\/shevabam\/get-rss-feed-url-extension",
    "permissions": [
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        "activeTab",
        "notifications"
    ],
    "browser_action": {
        "default_icon": "img\/icon_default.png",
        "default_popup": "popup.html",
        "default_title": "Click to view RSS feeds for this page"
    },
    "background": {
        "page": "background.html",
        "persistent": false
    },
    "icons": {
        "128": "img\/icon_128.png"
    }
}