FurAffinity Message Notifier
A notifier for FurAffinity messages.
FurAffinity Message Notifierคืออะไร?
FurAffinity Message Notifier เป็นส่วนขยายของ Chrome ที่พัฒนาโดย CodeFox และคุณลักษณะหลักของมันคือ "A notifier for FurAffinity messages."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย FurAffinity Message Notifier
ดาวน์โหลดไฟล์ส่วนขยาย FurAffinity Message Notifier ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
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" } ] } |