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.
Τι είναι το MapPost;
Το MapPost είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον https://www.mappostit.com, και η κύρια λειτουργία του είναι "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.".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης MapPost
Λήψη αρχείων επέκτασης MapPost σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
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.
Βασικές Πληροφορίες Επέκτασης
Όνομα | MapPost |
ID | pengdenaaekaepbopaaagmbhefcfcgio |
Επίσημο URL | https://chromewebstore.google.com/detail/mappost/pengdenaaekaepbopaaagmbhefcfcgio |
Περιγραφή | 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. |
Μέγεθος Αρχείου | 48.15 KB |
Αριθμός Εγκαταστάσεων | 52 |
Τρέχουσα Έκδοση | 1.0.6 |
Τελευταία Ενημέρωση | 2021-06-08 |
Ημερομηνία Δημοσίευσης | 2018-04-04 |
Αξιολόγηση | 4.00/5 Συνολικά 3 Αξιολογήσεις |
Προγραμματιστής | https://www.mappostit.com |
Ηλεκτρονικό ταχυδρομείο | [email protected] |
Τύπος Πληρωμής | free |
Ιστότοπος Επέκτασης | https://www.mappostit.com/ |
Διεύθυνση URL της Σελίδας Βοήθειας | https://www.mappostit.com/faq |
URL της Σελίδας Πολιτικής Απορρήτου | https://mappostit.com/privacy |
Υποστηριζόμενες Γλώσσες | 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:\/\/*\/*" ] } |