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.
Co to jest MapPost?
MapPost to rozszerzenie Chrome opracowane przez https://www.mappostit.com, a jego główną funkcją jest „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.”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia MapPost
Pobierz pliki rozszerzeń MapPost w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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.
Podstawowe informacje o rozszerzeniu
Nazwa | MapPost |
ID | pengdenaaekaepbopaaagmbhefcfcgio |
Oficjalny URL | https://chromewebstore.google.com/detail/mappost/pengdenaaekaepbopaaagmbhefcfcgio |
Opis | 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. |
Rozmiar pliku | 48.15 KB |
Liczba instalacji | 52 |
Aktualna Wersja | 1.0.6 |
Ostatnia Aktualizacja | 2021-06-08 |
Data Publikacji | 2018-04-04 |
Ocena | 4.00/5 Łącznie 3 Oceny |
Deweloper | https://www.mappostit.com |
[email protected] | |
Typ Płatności | free |
Strona Rozszerzenia | https://www.mappostit.com/ |
Adres URL Strony Pomocy | https://www.mappostit.com/faq |
Adres URL Strony Polityki Prywatności | https://mappostit.com/privacy |
Obsługiwane Języki | 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:\/\/*\/*" ] } |