GPXPlus Notifier
Get notifications from GPXPlus when you're offline.
GPXPlus Notifierคืออะไร?
GPXPlus Notifier เป็นส่วนขยายของ Chrome ที่พัฒนาโดย http://gpxplus.net และคุณลักษณะหลักของมันคือ "Get notifications from GPXPlus when you're offline."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย GPXPlus Notifier
ดาวน์โหลดไฟล์ส่วนขยาย GPXPlus Notifier ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
A simple extension to get notifications from GPXPlus.net, even when you're offline. Find out if your eggs are ready to hatch or if your Vs. Seeker battle is done and much more without having to lift a finger! Requires an account on GPXPlus.net/GTSPlus.net to use. GPXPlus is a fun and free way to adopt, raise and collect Pokemon, and much more!
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | |
ID | bikgbcleglmoiiadddnnmmcekkfkhkdo |
URL อย่างเป็นทางการ | https://chrome.google.com/webstore/detail/gpxplus-notifier/bikgbcleglmoiiadddnnmmcekkfkhkdo |
คำอธิบาย | Get notifications from GPXPlus when you're offline. |
ขนาดไฟล์ | 43.37 KB |
จำนวนการติดตั้ง | 1,000 |
เวอร์ชันปัจจุบัน | 0.90 |
อัปเดตครั้งล่าสุด | 2016-11-25 |
วันที่เผยแพร่ | 2016-11-25 |
คะแนน | 4.77/5 รวมทั้งหมด 43 คะแนน |
ผู้พัฒนา | http://gpxplus.net |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://gpx.plus/ |
URL หน้าช่วยเหลือ | https://gpx.plus/help/notifier |
ภาษาที่รองรับ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "GPXPlus Notifier", "version": "0.90", "description": "Get notifications from GPXPlus when you're offline.", "browser_action": { "default_icon": "icon16.png", "default_popup": "popup.html" }, "content_scripts": [ { "matches": [ "https:\/\/*.gpx.plus\/*" ], "css": [ "hidenotification.css" ] } ], "background": { "page": "background.html" }, "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" }, "permissions": [ "https:\/\/*.gpx.plus\/*", "notifications" ], "options_page": "options.html", "manifest_version": 2 } |