Get RSS Feed URL for Slick RSS

Retreive RSS feeds URLs from WebSite to import in Slick RSS

Τι είναι το Get RSS Feed URL for Slick RSS;

Το Get RSS Feed URL for Slick RSS είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον gandfhdev, και η κύρια λειτουργία του είναι "Retreive RSS feeds URLs from WebSite to import in Slick RSS".

Στιγμιότυπα Επέκτασης

screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Get RSS Feed URL for Slick RSS

Λήψη αρχείων επέκτασης Get RSS Feed URL for Slick RSS σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        Retreive RSS feeds URLs from WebSite and send url to Slick RSS
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!

You can get feeds url from external service "feedsearch.dev".
I host same API and I have added 3 modes to this extension.
There is a 24h cache per URL and per mode to allow the load to be absorbed by the web server.
Cache is emptied every week.
It is a python application that will browse web pages and links to find feeds.
Only URL requested, mode and result are stored in cache.
It is on demand only and no personal data is sent or stored.

Translations were done with external services (deepl, google translate and chat GPT) without verification.

List of changes v1.1:
- Remove storage permission
- Fix regex for specials urls
- Fix CSS
- Add API to crawler to search feeds with 3 modes
- Remove duplicate feeds found
- CSS scrollbar
- Add lang pt_BR, pt_PT, ja and ko

Fork from https://chrome.google.com/webstore/detail/get-rss-feed-url/kfghpdldaipanmkhfpdcjglncmilendn
Features added :
- dark or light mode
- Translation
- Use external service "feedsearch.dev" if you click on bottom link
- Send feed's url to Slick RSS
- Upgrade to Manifest V3
- Store options inside browser                    

Βασικές Πληροφορίες Επέκτασης

Όνομα Get RSS Feed URL for Slick RSS Get RSS Feed URL for Slick RSS
ID odocamobgglamolbifdmdlhglgmkpfag
Επίσημο URL https://chromewebstore.google.com/detail/get-rss-feed-url-for-slic/odocamobgglamolbifdmdlhglgmkpfag
Περιγραφή Retreive RSS feeds URLs from WebSite to import in Slick RSS
Μέγεθος Αρχείου 69.77 KB
Αριθμός Εγκαταστάσεων 946
Τρέχουσα Έκδοση 1.1.1
Τελευταία Ενημέρωση 2023-04-25
Ημερομηνία Δημοσίευσης 2023-01-23
Αξιολόγηση 5.00/5 Συνολικά 2 Αξιολογήσεις
Προγραμματιστής gandfhdev
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://github.com/gandf/get-rss-feed-url-extension-for-slick-rss/discussions
Διεύθυνση URL της Σελίδας Βοήθειας https://github.com/gandf/get-rss-feed-url-extension-for-slick-rss/issues
Υποστηριζόμενες Γλώσσες de,en,en-GB,en-US,fr,nl,es,it,pt-BR,pt-PT,ja,ko
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "__MSG_appName__",
    "description": "__MSG_appDesc__",
    "version": "1.1.1",
    "author": "__MSG_appAuthor__",
    "homepage_url": "https:\/\/github.com\/gandf\/get-rss-feed-url-extension-for-slick-rss",
    "options_page": "options.html",
    "default_locale": "en",
    "permissions": [
        "activeTab"
    ],
    "host_permissions": [
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "action": {
        "default_icon": "img\/icon_default.png",
        "default_popup": "popup.html",
        "default_title": "__MSG_appTitle__"
    },
    "background": {
        "service_worker": "js\/background.js"
    },
    "icons": {
        "128": "img\/icon_128.png"
    }
}