MapsOfMind: Save to mindmap

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

Was ist MapsOfMind: Save to mindmap?

MapsOfMind: Save to mindmap ist eine Chrome-Erweiterung, die von MapsOfMind entwickelt wurde, und ihr Hauptmerkmal ist "Save the selected text from the active tab to your MapsOfMind map.".

Erweiterungsscreenshots

screenshot

MapsOfMind: Save to mindmap-Erweiterungs-CRX-Datei herunterladen

Laden Sie MapsOfMind: Save to mindmap-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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                    

Grundlegende Informationen zur Erweiterung

Name MapsOfMind: Save to mindmap MapsOfMind: Save to mindmap
ID aldnceeapjjfjgdikefcjhapdmjijdam
Offizielle URL https://chromewebstore.google.com/detail/mapsofmind-save-to-mindma/aldnceeapjjfjgdikefcjhapdmjijdam
Beschreibung Save the selected text from the active tab to your MapsOfMind map.
Dateigröße 25.93 KB
Installationsanzahl 25
Aktuelle Version 1.0.1
Letztes Update 2020-11-05
Veröffentlichungsdatum 2020-11-05
Bewertung 3.00/5 Insgesamt 2 Bewertungen
Entwickler MapsOfMind
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://mapsofmind.com
Hilfeseite URL https://mapsofmind.com/contact
URL der Datenschutzrichtlinien-Seite https://mapsofmind.com/privacy
Unterstützte Sprachen 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."
        }
    }
}