Live RSS Bookmarks
Sync RSS feeds with bookmark folders
Hvad er Live RSS Bookmarks?
Live RSS Bookmarks er en Chrome-udvidelse udviklet af David Hamp-Gonsalves, og dens hovedfunktion er "Sync RSS feeds with bookmark folders".
Udvidelsesskærmbilleder
Download Live RSS Bookmarks-udvidelses-CRX-fil
Download Live RSS Bookmarks-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
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
Grundlæggende oplysninger om udvidelsen
Navn | |
ID | hdabapllcefknagcjlhcpbnlnkbofndn |
Officiel URL | https://chromewebstore.google.com/detail/live-rss-bookmarks/hdabapllcefknagcjlhcpbnlnkbofndn |
Beskrivelse | Sync RSS feeds with bookmark folders |
Filstørrelse | 410 KB |
Antal Installationer | 100 |
Nuværende Version | 5.1.1 |
Senest Opdateret | 2024-03-01 |
Udgivelsesdato | 2023-09-09 |
Bedømmelse | 5.00/5 Samlet 1 Bedømmelser |
Udvikler | David Hamp-Gonsalves |
[email protected] | |
Betalingsmetode | free |
Udvidelseswebsted | https://github.com/davidhampgonsalves/Live-RSS-Bookmarks |
Hjælpeside-URL | https://github.com/davidhampgonsalves/Live-RSS-Bookmarks/issues |
URL til Fortrolighedspolitik Side | https://davidhampgonsalves.com/contact-identicons-privacy_policy.html |
Understøttede Sprog | 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" } |