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.
Apa itu MapPost?
MapPost adalah ekstensi Chrome yang dikembangkan oleh https://www.mappostit.com, dan fitur utamanya adalah "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.".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi MapPost
Unduh file ekstensi MapPost dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.
Petunjuk Penggunaan Ekstensi
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.
Informasi Dasar Ekstensi
Nama | MapPost |
ID | pengdenaaekaepbopaaagmbhefcfcgio |
URL Resmi | https://chromewebstore.google.com/detail/mappost/pengdenaaekaepbopaaagmbhefcfcgio |
Deskripsi | 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. |
Ukuran File | 48.15 KB |
Jumlah Instalasi | 52 |
Versi Saat Ini | 1.0.6 |
Terakhir Diperbarui | 2021-06-08 |
Tanggal Publikasi | 2018-04-04 |
Penilaian | 4.00/5 Total 3 Penilaian |
Pengembang | https://www.mappostit.com |
[email protected] | |
Tipe Pembayaran | free |
Situs Ekstensi | https://www.mappostit.com/ |
URL Halaman Bantuan | https://www.mappostit.com/faq |
URL Halaman Kebijakan Privasi | https://mappostit.com/privacy |
Bahasa yang Didukung | 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:\/\/*\/*" ] } |