MapsOfMind: Save to mindmap

Save the selected text from the active tab to your MapsOfMind map.

¿Qué es MapsOfMind: Save to mindmap?

MapsOfMind: Save to mindmap es una extensión de Chrome desarrollada por MapsOfMind, y su función principal es "Save the selected text from the active tab to your MapsOfMind map.".

Capturas de Pantalla de la Extensión

screenshot

Descargar Archivo CRX de la Extensión MapsOfMind: Save to mindmap

Descarga archivos de extensión MapsOfMind: Save to mindmap en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        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                    

Información Básica de la Extensión

Nombre MapsOfMind: Save to mindmap MapsOfMind: Save to mindmap
ID aldnceeapjjfjgdikefcjhapdmjijdam
URL Oficial https://chromewebstore.google.com/detail/mapsofmind-save-to-mindma/aldnceeapjjfjgdikefcjhapdmjijdam
Descripción Save the selected text from the active tab to your MapsOfMind map.
Tamaño del Archivo 25.93 KB
Cantidad de Instalaciones 25
Versión Actual 1.0.1
Última Actualización 2020-11-05
Fecha de Publicación 2020-11-05
Calificación 3.00/5 Total de 2 Calificaciones
Desarrollador MapsOfMind
Correo electrónico [email protected]
Tipo de Pago free
Sitio Web de la Extensión https://mapsofmind.com
URL de la Página de Ayuda https://mapsofmind.com/contact
URL de la Página de Política de Privacidad https://mapsofmind.com/privacy
Idiomas Soportados 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."
        }
    }
}