Easy to RSS

Retreive RSS feeds URLs from WebSite, RSSHub supported

Vad är Easy to RSS?

Easy to RSS är en Chrome-tillägg utvecklad av https://idealclover.top, och dess huvudfunktion är "Retreive RSS feeds URLs from WebSite, RSSHub supported".

Tilläggsskärmbilder

screenshot

Ladda ner Easy to RSS-förlängningens CRX-fil

Ladda ner Easy to RSS-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

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

Grundläggande Information om Tillägg

Namn Easy to RSS Easy to RSS
ID hbcmpkcpbnecinpngdnfbnknfkdpdfli
Officiell webbadress https://chromewebstore.google.com/detail/easy-to-rss/hbcmpkcpbnecinpngdnfbnknfkdpdfli
Beskrivning Retreive RSS feeds URLs from WebSite, RSSHub supported
Filstorlek 21.43 KB
Antal Installationer 2,686
Aktuell Version 0.2.0
Senast Uppdaterad 2018-12-18
Publiceringsdatum 2018-12-17
Betyg 4.38/5 Totalt 8 Betyg
Utvecklare https://idealclover.top
E-post [email protected]
Betalningssätt free
Stödda Språk 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"
    }
}