Forum Alerts
Get alerts from your favorite communities (powered by XenForo).
Forum Alertsคืออะไร?
Forum Alerts เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Daniel Hood และคุณลักษณะหลักของมันคือ "Get alerts from your favorite communities (powered by XenForo)."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Forum Alerts
ดาวน์โหลดไฟล์ส่วนขยาย Forum Alerts ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
This extension allows you to be notified when you get a new alert or personal conversation on any XenForo site that you visit while logged in. It does not require your username, email, or password for the site. The only data is uses is the page content. Every few minutes it checks each of the sites it picked up as using XenForo software for new alerts.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Forum Alerts |
ID | leiehnemnmkljaaahpadjodmghkhlhjj |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/forum-alerts/leiehnemnmkljaaahpadjodmghkhlhjj |
คำอธิบาย | Get alerts from your favorite communities (powered by XenForo). |
ขนาดไฟล์ | 40.62 KB |
จำนวนการติดตั้ง | 192 |
เวอร์ชันปัจจุบัน | 1.0.2 |
อัปเดตครั้งล่าสุด | 2013-10-28 |
วันที่เผยแพร่ | 2013-10-28 |
คะแนน | 4.11/5 รวมทั้งหมด 19 คะแนน |
ผู้พัฒนา | Daniel Hood |
ประเภทการชำระเงิน | free |
ภาษาที่รองรับ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Forum Alerts", "version": "1.0.2", "permissions": [ "http:\/\/*\/", "https:\/\/*\/", "activeTab", "tabs", "storage", "alarms", "notifications" ], "description": "Get alerts from your favorite communities (powered by XenForo).", "background": { "scripts": [ "jquery.min.js", "alerts.js" ], "persistent": true }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "content.js" ], "run_at": "document_idle" } ] } |