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.
O que é MapPost?
MapPost é uma extensão do Chrome desenvolvida por https://www.mappostit.com, e sua principal característica é "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.".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão MapPost
Baixe arquivos de extensão MapPost no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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.
Informações Básicas da Extensão
Nome | MapPost |
ID | pengdenaaekaepbopaaagmbhefcfcgio |
URL Oficial | https://chromewebstore.google.com/detail/mappost/pengdenaaekaepbopaaagmbhefcfcgio |
Descrição | 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. |
Tamanho do Arquivo | 48.15 KB |
Contagem de Instalações | 52 |
Versão Atual | 1.0.6 |
Última Atualização | 2021-06-08 |
Data de Publicação | 2018-04-04 |
Classificação | 4.00/5 Total de 3 Avaliações |
Desenvolvedor | https://www.mappostit.com |
[email protected] | |
Tipo de Pagamento | free |
Site da Extensão | https://www.mappostit.com/ |
URL da Página de Ajuda | https://www.mappostit.com/faq |
URL da Página de Política de Privacidade | https://mappostit.com/privacy |
Idiomas Suportados | 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:\/\/*\/*" ] } |