Slick RSS by users

A full featured RSS reader that's fully contained within the browser.

Что такое Slick RSS by users?

Slick RSS by users - это расширение Chrome, разработанное gandfhdev, и его основная функция - "A full featured RSS reader that's fully contained within the browser.".

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

screenshot
screenshot
screenshot

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

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

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

                        A full featured RSS reader that's fully contained within the browser.

Full source code is still available on github.
No account is required and this extension is entirely free.
There are no trackers, tracking or advertisements.

To search feed inside page, you can use extension "Get RSS Feed URL for Slick RSS" https://chrome.google.com/webstore/detail/odocamobgglamolbifdmdlhglgmkpfag

V3.17 Fix "show all feeds" and change scrollbar

V3.16 Fix CSS to hide comment and author when feed is condensed, add notification and management categories to filter or change color of feed.

V3.15 Fix issue with more complex feed, add media management of audio, add category and link to comments found in feed

V3.14 fix issue with unread and remove reload page with "mark read all" and "Open all unread"

V3.13 can add feed's url from API and add option to don't mark read feed when click on link.

V3.12 improve unread count and catch error if feed's format is wrong.

V3.11 fix issue with deprecated function 's parameter in chrome to open page in background and add icon to open one feed in tab to save feed.

V3.10 add import/export for options, improve charset detect, some minor css change and fix some background errors.

V3.9 Can use summary, add icon on feed updated and fix issue when opening all feeds unread.

V3.8 fix left menu.

V3.7 speedup loading feeds, improve thumbnail search and show some feeds with less big space.

New version is finally compatible with manifest V3.

Web development is not my specialty and if you want to rework design (CSS and HTML), code (javascript), translations, ... do not hesitate to do PR or start discussions on github.

Notification sound have not yet been reworked.

List of changes V3.017:
- Fix "show all feeds" to take into account all feeds even with no group
- Add CSS to modify scrollbar

List of changes V3.016:
- Change sound notification by notification in browser
- Add categories management (setup color, allow filter by category, add import and import caterogies setup)
- Secure from error web page
- Fix css to hide comment and author when feed is condensed

List of changes V3.015:
- Fix issue to find root of feeds
- Apply max Items with groups and all feeds
- Fix loading in "All Feeds" group
- Add source audio support for media
- Sandbox and remove script in error page
- Add category and comments from feeds
- Fix issue when formating year with 2 digits
- Add link to "Get RSS feed URL for Slick RSS" in option
- Add link to tool to find feeds on viewer with option to enable
- Fix issue on refresh viewer

List of changes V3.014:
- Fix issue with unread
- Remove reload page with "mark read all" and "Open all unread"

List of changes V3.013:
- Add feed's url from API
- Add option to don't mark read feed when click on link

List of changes V3.012:
- Catch error when feed has wrong format
- Fix unread count
- Clean and optimize code

List of changes V3.011:
- Update default options (Dark mode, enable iframe, No limit on height)
- Fix background error when group exist and option "all feeds in one" is enabled
- Fix issue to show group feeds
- Fix issue due to new chrome change when open tab
- Add icon to open one feed in tab to save feed

List of changes V3.010:
- Add options import/export
- Fix error when background and viewer are not correct sync
- Fix error when viewer ask to update feeds and viewer's tab is closed
- Improve render of page that is not a feed
- Improve detect charset
- Some changes in css

List of changes V3.009:
- Add option to show summary
- Show badge on feed read but updated
- Fix infinite loop when use action to open all feed

List of changes V3.008:
- Find date for feed without date for ordering
- Fix unread count in left menu
- Don't create new item in left menu if already exist
- Optimize update after read item
- Optimize unread info on badge

List of changes V3.007:
- Add new way to find thumbnail
- Remove long space before or after img in style
- Prevent error in service worker
- Show HTML page when feed in HTML
- Option to show unread fixed
- Add API to add feed from another extension (not tested yet)
- Add option to log into console to help optimization
- Optimize to fetch feeds in parallel (update speedup with a lot of feeds)                    

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

Название Slick RSS by users Slick RSS by users
ID lloonpjjgockligalihhebapcafgbgef
Официальный URL https://chromewebstore.google.com/detail/slick-rss-by-users/lloonpjjgockligalihhebapcafgbgef
Описание A full featured RSS reader that's fully contained within the browser.
Размер файла 254 KB
Количество установок 6,094
Текущая Версия 3.017
Последнее Обновление 2023-07-03
Дата публикации 2020-04-30
Рейтинг 4.30/5 Всего 20 оценок
Разработчик gandfhdev
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://github.com/gandf/slick-rss
URL страницы помощи https://github.com/gandf/slick-rss/discussions
Поддерживаемые языки de,en,en-GB,en-US,fr,nl,es,it
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "__MSG_appName__",
    "version": "3.017",
    "author": "__MSG_appAuthor__",
    "homepage_url": "https:\/\/github.com\/gandf\/slick-rss",
    "description": "__MSG_appDesc__",
    "options_page": "options.html",
    "default_locale": "en",
    "icons": {
        "16": "transmit.png",
        "128": "icon_128.png"
    },
    "action": {
        "default_icon": "transmit.png",
        "default_title": "Slick RSS"
    },
    "background": {
        "service_worker": "background-worker.js"
    },
    "permissions": [
        "alarms"
    ],
    "optional_permissions": [
        "notifications"
    ],
    "host_permissions": [
        "http:\/\/*\/",
        "https:\/\/*\/"
    ],
    "content_security_policy": {
        "extension_pages": "script-src 'self'; object-src 'self'"
    }
}