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.

Was ist MapPost?

MapPost ist eine Chrome-Erweiterung, die von https://www.mappostit.com entwickelt wurde, und ihr Hauptmerkmal ist "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.".

Erweiterungsscreenshots

screenshot
screenshot
screenshot

MapPost-Erweiterungs-CRX-Datei herunterladen

Laden Sie MapPost-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name MapPost MapPost
ID pengdenaaekaepbopaaagmbhefcfcgio
Offizielle URL https://chromewebstore.google.com/detail/mappost/pengdenaaekaepbopaaagmbhefcfcgio
Beschreibung 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.
Dateigröße 48.15 KB
Installationsanzahl 52
Aktuelle Version 1.0.6
Letztes Update 2021-06-08
Veröffentlichungsdatum 2018-04-04
Bewertung 4.00/5 Insgesamt 3 Bewertungen
Entwickler https://www.mappostit.com
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://www.mappostit.com/
Hilfeseite URL https://www.mappostit.com/faq
URL der Datenschutzrichtlinien-Seite https://mappostit.com/privacy
Unterstützte Sprachen 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:\/\/*\/*"
    ]
}