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 là gì?
MapPost là một tiện ích mở rộng Chrome được phát triển bởi https://www.mappostit.com, và tính năng chính của nó là "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.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng MapPost
Tải xuống các tệp mở rộng MapPost dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | MapPost |
ID | pengdenaaekaepbopaaagmbhefcfcgio |
URL Chính Thức | https://chromewebstore.google.com/detail/mappost/pengdenaaekaepbopaaagmbhefcfcgio |
Mô tả | 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. |
Kích Thước Tệp | 48.15 KB |
Số Lần Cài Đặt | 52 |
Phiên Bản Hiện Tại | 1.0.6 |
Cập Nhật Lần Cuối | 2021-06-08 |
Ngày Phát Hành | 2018-04-04 |
Đánh Giá | 4.00/5 Tổng số 3 Đánh Giá |
Nhà Phát Triển | https://www.mappostit.com |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://www.mappostit.com/ |
URL Trang Trợ Giúp | https://www.mappostit.com/faq |
URL Trang Chính Sách Bảo Mật | https://mappostit.com/privacy |
Ngôn Ngữ Được Hỗ Trợ | 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:\/\/*\/*" ] } |