MapsOfMind: Save to mindmap
Save the selected text from the active tab to your MapsOfMind map.
Τι είναι το MapsOfMind: Save to mindmap;
Το MapsOfMind: Save to mindmap είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον MapsOfMind, και η κύρια λειτουργία του είναι "Save the selected text from the active tab to your MapsOfMind map.".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης MapsOfMind: Save to mindmap
Λήψη αρχείων επέκτασης MapsOfMind: Save to mindmap σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
Have you ever wanted to save text snippets and urls from the websites you visit and create a mind map automatically from it? With this MapsOfMind extension, you can now send any text directly to your mind map with a single click! Note: You need a MapsOfMind account to use this extension! (Signup: https://mapsofmind.com/signup) About MapsOfMind (www.mapsofmind.com): With over 25,000 users, MapsOfMind is the most versatile online mind mapping tool. Add rich text, documents, comments, todo boxes and more to your mind map! Unlimited customizations allow you to create a mind map that's truly yours with recent updates we have even more useful mind mapping features! Check out our new features here: https://www.mapsofmind.com/help/whats_new_in_mapsofmind
Βασικές Πληροφορίες Επέκτασης
Όνομα | MapsOfMind: Save to mindmap |
ID | aldnceeapjjfjgdikefcjhapdmjijdam |
Επίσημο URL | https://chromewebstore.google.com/detail/mapsofmind-save-to-mindma/aldnceeapjjfjgdikefcjhapdmjijdam |
Περιγραφή | Save the selected text from the active tab to your MapsOfMind map. |
Μέγεθος Αρχείου | 25.93 KB |
Αριθμός Εγκαταστάσεων | 25 |
Τρέχουσα Έκδοση | 1.0.1 |
Τελευταία Ενημέρωση | 2020-11-05 |
Ημερομηνία Δημοσίευσης | 2020-11-05 |
Αξιολόγηση | 3.00/5 Συνολικά 2 Αξιολογήσεις |
Προγραμματιστής | MapsOfMind |
Ηλεκτρονικό ταχυδρομείο | [email protected] |
Τύπος Πληρωμής | free |
Ιστότοπος Επέκτασης | https://mapsofmind.com |
Διεύθυνση URL της Σελίδας Βοήθειας | https://mapsofmind.com/contact |
URL της Σελίδας Πολιτικής Απορρήτου | https://mapsofmind.com/privacy |
Υποστηριζόμενες Γλώσσες | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "MapsOfMind: Save to mindmap", "description": "Save the selected text from the active tab to your MapsOfMind map.", "version": "1.0.1", "permissions": [ "contextMenus", "storage", "activeTab", "notifications", "cookies", "https:\/\/www.mapsofmind.com\/*" ], "background": { "scripts": [ "backgroundScript.js" ], "persistent": false }, "manifest_version": 2, "icons": { "64": "images\/ico.png" }, "options_ui": { "page": "options.html", "chrome_style": true }, "browser_action": { "default_popup": "options.html" }, "options_page": "options.html", "commands": { "save-text-to-map": { "suggested_key": { "default": "Ctrl+Shift+Y" }, "description": "Save the selected text from the active tab to your MapsOfMind map." } } } |