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.

Cos'è MapPost?

MapPost è un'estensione di Chrome sviluppata da https://www.mappostit.com, e la sua funzione principale è "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 dell'Estensione

screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione MapPost

Scarica i file di estensione MapPost in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome MapPost MapPost
ID pengdenaaekaepbopaaagmbhefcfcgio
URL Ufficiale https://chromewebstore.google.com/detail/mappost/pengdenaaekaepbopaaagmbhefcfcgio
Descrizione 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.
Dimensione del File 48.15 KB
Conteggio Installazioni 52
Versione Corrente 1.0.6
Ultimo Aggiornamento 2021-06-08
Data di Pubblicazione 2018-04-04
Valutazione 4.00/5 Totale 3 Valutazioni
Sviluppatore https://www.mappostit.com
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://www.mappostit.com/
URL della Pagina di Aiuto https://www.mappostit.com/faq
URL della Pagina della Politica sulla Privacy https://mappostit.com/privacy
Lingue Supportate 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:\/\/*\/*"
    ]
}