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.
Hvad er MapPost?
MapPost er en Chrome-udvidelse udviklet af https://www.mappostit.com, og dens hovedfunktion er "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.".
Udvidelsesskærmbilleder
Download MapPost-udvidelses-CRX-fil
Download MapPost-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
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.
Grundlæggende oplysninger om udvidelsen
Navn | MapPost |
ID | pengdenaaekaepbopaaagmbhefcfcgio |
Officiel URL | https://chromewebstore.google.com/detail/mappost/pengdenaaekaepbopaaagmbhefcfcgio |
Beskrivelse | 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. |
Filstørrelse | 48.15 KB |
Antal Installationer | 52 |
Nuværende Version | 1.0.6 |
Senest Opdateret | 2021-06-08 |
Udgivelsesdato | 2018-04-04 |
Bedømmelse | 4.00/5 Samlet 3 Bedømmelser |
Udvikler | https://www.mappostit.com |
[email protected] | |
Betalingsmetode | free |
Udvidelseswebsted | https://www.mappostit.com/ |
Hjælpeside-URL | https://www.mappostit.com/faq |
URL til Fortrolighedspolitik Side | https://mappostit.com/privacy |
Understøttede Sprog | 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:\/\/*\/*" ] } |