MapPost
Save the locations you want to visit and the articles that made you want to visit there in the first place, on your very own map.
MapPostคืออะไร?
MapPost เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://www.mappostit.com และคุณลักษณะหลักของมันคือ "Save the locations you want to visit and the articles that made you want to visit there in the first place, on your very own map."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย MapPost
ดาวน์โหลดไฟล์ส่วนขยาย MapPost ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Save and keep track of the locations you want to visit and the articles that made you want to visit there in the first place, on your very own map, with MapPost. Your map is available on your phone, tablet, laptop and desktop computers, where and when you want it.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | MapPost |
ID | pengdenaaekaepbopaaagmbhefcfcgio |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/mappost/pengdenaaekaepbopaaagmbhefcfcgio |
คำอธิบาย | Save the locations you want to visit and the articles that made you want to visit there in the first place, on your very own map. |
ขนาดไฟล์ | 48.15 KB |
จำนวนการติดตั้ง | 52 |
เวอร์ชันปัจจุบัน | 1.0.6 |
อัปเดตครั้งล่าสุด | 2021-06-08 |
วันที่เผยแพร่ | 2018-04-04 |
คะแนน | 4.00/5 รวมทั้งหมด 3 คะแนน |
ผู้พัฒนา | https://www.mappostit.com |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://www.mappostit.com/ |
URL หน้าช่วยเหลือ | https://www.mappostit.com/faq |
URL หน้านโยบายความเป็นส่วนตัว | https://mappostit.com/privacy |
ภาษาที่รองรับ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "MapPost", "description": "Save the locations you want to visit and the articles that made you want to visit there in the first place, on your very own map.", "version": "1.0.6", "icons": { "128": "icon128.png", "48": "icon48.png", "16": "icon16.png" }, "browser_action": { "default_title": "Save To MapPost", "default_icon": "icon16.png" }, "background": { "scripts": [ "jquery-3.2.1.min.js", "eventPage.js" ], "persistent": false }, "content_scripts": [ { "js": [ "jquery-3.2.1.min.js", "login.js" ], "matches": [ "*:\/\/*.mappostit.com\/dashboard\/" ], "run_at": "document_end" }, { "js": [ "jquery-3.2.1.min.js", "logout.js" ], "matches": [ "*:\/\/*.mappostit.com\/login\/?p=1" ] } ], "permissions": [ "tabs", "webNavigation", "activeTab", "contextMenus", "notifications", "http:\/\/*\/*", "https:\/\/*\/*" ] } |