FreshRSS Checker
Shows unread count for FreshRSS
Vad är FreshRSS Checker?
FreshRSS Checker är en Chrome-tillägg utvecklad av Brawl, och dess huvudfunktion är "Shows unread count for FreshRSS".
Tilläggsskärmbilder
Ladda ner FreshRSS Checker-förlängningens CRX-fil
Ladda ner FreshRSS Checker-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
FreshRSS Checker is a WebExtension that tracks unread items in a FreshRSS instance and shows a badge with the number of unread articles.
Requires Chrome 100+. Grundläggande Information om Tillägg
| Namn | |
| ID | fkckemcdpfnblnkndachclpjfmlhofeg |
| Officiell webbadress | https://chromewebstore.google.com/detail/freshrss-checker/fkckemcdpfnblnkndachclpjfmlhofeg |
| Beskrivning | Shows unread count for FreshRSS |
| Filstorlek | 29.33 KB |
| Antal Installationer | 322 |
| Aktuell Version | 3.0.1 |
| Senast Uppdaterad | 2022-03-30 |
| Publiceringsdatum | 2021-02-28 |
| Betyg | 4.60/5 Totalt 5 Betyg |
| Utvecklare | Brawl |
| E-post | [email protected] |
| Betalningssätt | free |
| Tilläggswebbplats | https://github.com/Brawl345/FreshRSS-Checker |
| Hjälpsida URL | https://github.com/Brawl345/FreshRSS-Checker/issues |
| Stödda Språk | de,en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"default_locale": "en",
"name": "__MSG_extensionName__",
"description": "__MSG_extensionDescription__",
"author": "Andreas Bielawski",
"version": "3.0.1",
"icons": {
"16": "icons\/16.png",
"32": "icons\/32.png",
"48": "icons\/48.png",
"64": "icons\/64.png",
"128": "icons\/128.png"
},
"background": {
"service_worker": "build\/service-worker.js",
"type": "module"
},
"action": {
"default_icon": {
"16": "icons\/16.png",
"32": "icons\/32.png",
"48": "icons\/48.png",
"64": "icons\/64.png",
"128": "icons\/128.png"
}
},
"options_ui": {
"page": "options\/options.html"
},
"permissions": [
"alarms",
"contextMenus",
"storage"
],
"host_permissions": [
"http:\/\/*\/*",
"https:\/\/*\/*"
]
} | |