FurAffinity Message Notifier
A notifier for FurAffinity messages.
Co je FurAffinity Message Notifier?
FurAffinity Message Notifier je rozšíření Chrome vyvinuté CodeFox, a jeho hlavní funkcí je „A notifier for FurAffinity messages.“.
Snímky obrazovky rozšíření
Stáhnout soubor CRX rozšíření FurAffinity Message Notifier
Stáhněte si soubory rozšíření FurAffinity Message Notifier ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.
Pokyny pro Použití Rozšíření
This extension shows how many notifications you have on FurAffinity and also provides a quick way to access them. It also allows you to choose notification types to ignore. CodeFox is not affiliated with FurAffinity. FA Message Notifier uses https://sentry.io for error reporting.
Základní Informace o Rozšíření
Název | FurAffinity Message Notifier |
ID | migkkjmambiagaomakolkoidihmkhnlj |
Oficiální URL | https://chromewebstore.google.com/detail/furaffinity-message-notif/migkkjmambiagaomakolkoidihmkhnlj |
Popis | A notifier for FurAffinity messages. |
Velikost souboru | 180 KB |
Počet instalací | 426 |
Aktuální Verze | 1.0.4 |
Poslední Aktualizace | 2024-01-24 |
Datum Vydání | 2020-05-30 |
Hodnocení | 5.00/5 Celkem 7 Hodnocení |
Vývojář | CodeFox |
[email protected] | |
Typ Platby | free |
URL Stránky Zásad Ochrany Soukromí | https://sites.google.com/view/codefox/furaffinity-notifier-privacy |
Podporované Jazyky | en |
manifest.json | |
{ "manifest_version": 3, "name": "FurAffinity Message Notifier", "version": "1.0.4", "minimum_chrome_version": "116", "description": "A notifier for FurAffinity messages.", "short_name": "FA Notifier", "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "background": { "service_worker": "js\/service_worker.js", "type": "module" }, "action": { "default_icon": "img\/fa_gray_128.png", "default_popup": "popup.html" }, "icons": { "128": "img\/fa_128.png", "19": "img\/fa_19.png", "48": "img\/fa_48.png" }, "options_page": "options.html", "options_ui": { "open_in_tab": false, "page": "options.html" }, "permissions": [ "storage", "alarms", "offscreen" ], "optional_permissions": [ "notifications" ], "host_permissions": [ "http:\/\/www.furaffinity.net\/", "https:\/\/www.furaffinity.net\/" ], "content_scripts": [ { "js": [ "js\/injector.js" ], "matches": [ "http:\/\/www.furaffinity.net\/msg\/*", "https:\/\/www.furaffinity.net\/msg\/*" ], "run_at": "document_end" } ] } |