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.

¿Qué es MapPost?

MapPost es una extensión de Chrome desarrollada por https://www.mappostit.com, y su función principal es "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 Pantalla de la Extensión

screenshot
screenshot
screenshot

Descargar Archivo CRX de la Extensión MapPost

Descarga archivos de extensión MapPost en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        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.                    

Información Básica de la Extensión

Nombre MapPost MapPost
ID pengdenaaekaepbopaaagmbhefcfcgio
URL Oficial https://chromewebstore.google.com/detail/mappost/pengdenaaekaepbopaaagmbhefcfcgio
Descripción 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.
Tamaño del Archivo 48.15 KB
Cantidad de Instalaciones 52
Versión Actual 1.0.6
Última Actualización 2021-06-08
Fecha de Publicación 2018-04-04
Calificación 4.00/5 Total de 3 Calificaciones
Desarrollador https://www.mappostit.com
Correo electrónico [email protected]
Tipo de Pago free
Sitio Web de la Extensión https://www.mappostit.com/
URL de la Página de Ayuda https://www.mappostit.com/faq
URL de la Página de Política de Privacidad https://mappostit.com/privacy
Idiomas Soportados 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:\/\/*\/*"
    ]
}