MapsOfMind: Save to mindmap
Save the selected text from the active tab to your MapsOfMind map.
Cos'è MapsOfMind: Save to mindmap?
MapsOfMind: Save to mindmap è un'estensione di Chrome sviluppata da MapsOfMind, e la sua funzione principale è "Save the selected text from the active tab to your MapsOfMind map.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione MapsOfMind: Save to mindmap
Scarica i file di estensione MapsOfMind: Save to mindmap 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
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
Informazioni di Base sull'Estensione
Nome | MapsOfMind: Save to mindmap |
ID | aldnceeapjjfjgdikefcjhapdmjijdam |
URL Ufficiale | https://chromewebstore.google.com/detail/mapsofmind-save-to-mindma/aldnceeapjjfjgdikefcjhapdmjijdam |
Descrizione | Save the selected text from the active tab to your MapsOfMind map. |
Dimensione del File | 25.93 KB |
Conteggio Installazioni | 25 |
Versione Corrente | 1.0.1 |
Ultimo Aggiornamento | 2020-11-05 |
Data di Pubblicazione | 2020-11-05 |
Valutazione | 3.00/5 Totale 2 Valutazioni |
Sviluppatore | MapsOfMind |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://mapsofmind.com |
URL della Pagina di Aiuto | https://mapsofmind.com/contact |
URL della Pagina della Politica sulla Privacy | https://mapsofmind.com/privacy |
Lingue Supportate | 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." } } } |