Live RSS Bookmarks
Sync RSS feeds with bookmark folders
ما هو Live RSS Bookmarks؟
Live RSS Bookmarks هو إضافة Chrome تم تطويرها بواسطة David Hamp-Gonsalves، والميزة الرئيسية لها هي "Sync RSS feeds with bookmark folders".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Live RSS Bookmarks
قم بتنزيل ملفات الامتداد Live RSS Bookmarks بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
Live RSS Bookmarks mimics Firefox's old live bookmarks feature (removed since 2018). It does this by syncing bookmarks inside a folder for each RSS feed. This extension was previously called Foxish but was re-written to support Chrome Manifest v3. At this time it was simplified since Chrome no longer limits bookmark access like it did in the past and efforts were made to future proof it. Source code can be found at https://github.com/davidhampgonsalves/Live-RSS-Bookmarks
معلومات أساسية عن التمديد
الاسم | |
ID | hdabapllcefknagcjlhcpbnlnkbofndn |
عنوان URL الرسمي | https://chromewebstore.google.com/detail/live-rss-bookmarks/hdabapllcefknagcjlhcpbnlnkbofndn |
الوصف | Sync RSS feeds with bookmark folders |
حجم الملف | 410 KB |
عدد التثبيتات | 100 |
النسخة الحالية | 5.1.1 |
آخر تحديث | 2024-03-01 |
تاريخ النشر | 2023-09-09 |
تقييم | 5.00/5 مجموع تقييمات 1 |
المطور | David Hamp-Gonsalves |
البريد الإلكتروني | [email protected] |
نوع الدفع | free |
موقع الإضافة | https://github.com/davidhampgonsalves/Live-RSS-Bookmarks |
عنوان صفحة المساعدة | https://github.com/davidhampgonsalves/Live-RSS-Bookmarks/issues |
عنوان صفحة سياسة الخصوصية | https://davidhampgonsalves.com/contact-identicons-privacy_policy.html |
اللغات المدعومة | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "background": { "service_worker": "build\/background.js", "type": "module" }, "name": "Live RSS Bookmarks", "description": "Sync RSS feeds with bookmark folders", "icons": { "16": "images\/icon16.png", "32": "images\/icon32.png", "48": "images\/icon48.png", "128": "images\/icon128.png" }, "options_page": "html\/options.html", "permissions": [ "bookmarks", "alarms", "storage" ], "host_permissions": [ "http:\/\/*\/", "https:\/\/*\/" ], "version": "5.1.1" } |