FurAffinity Message Notifier
A notifier for FurAffinity messages.
FurAffinity Message Notifier क्या है?
FurAffinity Message Notifier CodeFox द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "A notifier for FurAffinity messages."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में FurAffinity Message Notifier एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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.
एक्सटेंशन की मूल जानकारी
नाम | FurAffinity Message Notifier |
ID | migkkjmambiagaomakolkoidihmkhnlj |
आधिकारिक URL | https://chromewebstore.google.com/detail/furaffinity-message-notif/migkkjmambiagaomakolkoidihmkhnlj |
विवरण | A notifier for FurAffinity messages. |
फ़ाइल का आकार | 180 KB |
स्थापना संख्या | 426 |
वर्तमान संस्करण | 1.0.4 |
अंतिम अपडेट | 2024-01-24 |
प्रकाशन तिथि | 2020-05-30 |
रेटिंग | 5.00/5 कुल 7 रेटिंग्स |
डेवलपर | CodeFox |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
गोपनीयता नीति पृष्ठ URL | https://sites.google.com/view/codefox/furaffinity-notifier-privacy |
समर्थित भाषाएँ | 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" } ] } |