Easy to RSS

Retreive RSS feeds URLs from WebSite, RSSHub supported

Co to jest Easy to RSS?

Easy to RSS to rozszerzenie Chrome opracowane przez https://idealclover.top, a jego główną funkcją jest „Retreive RSS feeds URLs from WebSite, RSSHub supported”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot
screenshot

Pobierz plik CRX rozszerzenia Easy to RSS

Pobierz pliki rozszerzeń Easy to 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

                        pre release version of Easy-to-RSS
https://github.com/idealclover/Easy-to-RSS
主要功能:获取网页RSS,复制到剪贴板并打开该RSS网页。与RSSHub联动                    

Podstawowe informacje o rozszerzeniu

Nazwa Easy to RSS Easy to RSS
ID hbcmpkcpbnecinpngdnfbnknfkdpdfli
Oficjalny URL https://chromewebstore.google.com/detail/easy-to-rss/hbcmpkcpbnecinpngdnfbnknfkdpdfli
Opis Retreive RSS feeds URLs from WebSite, RSSHub supported
Rozmiar pliku 21.43 KB
Liczba instalacji 2,686
Aktualna Wersja 0.2.0
Ostatnia Aktualizacja 2018-12-18
Data Publikacji 2018-12-17
Ocena 4.38/5 Łącznie 8 Oceny
Deweloper https://idealclover.top
E-mail cuirh@live.com
Typ Płatności free
Obsługiwane Języki zh-CN
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Easy to RSS",
    "description": "Retreive RSS feeds URLs from WebSite, RSSHub supported",
    "version": "0.2.0",
    "author": "@idealclover",
    "homepage_url": "https:\/\/github.com\/idealclover\/Easy-to-RSS",
    "permissions": [
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        "clipboardWrite",
        "activeTab",
        "storage",
        "tabs"
    ],
    "browser_action": {
        "default_icon": "img\/icon_default.png",
        "default_popup": "popup.html",
        "default_title": "Click to view RSS feeds for this page"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "js\/content.js"
            ]
        }
    ],
    "options_ui": {
        "page": "options.html",
        "open_in_tab": false
    },
    "icons": {
        "128": "img\/icon_128.png"
    }
}