MapsOfMind: Save to mindmap
Save the selected text from the active tab to your MapsOfMind map.
Co to jest MapsOfMind: Save to mindmap?
MapsOfMind: Save to mindmap to rozszerzenie Chrome opracowane przez MapsOfMind, a jego główną funkcją jest „Save the selected text from the active tab to your MapsOfMind map.”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia MapsOfMind: Save to mindmap
Pobierz pliki rozszerzeń MapsOfMind: Save to mindmap w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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
Podstawowe informacje o rozszerzeniu
Nazwa | MapsOfMind: Save to mindmap |
ID | aldnceeapjjfjgdikefcjhapdmjijdam |
Oficjalny URL | https://chromewebstore.google.com/detail/mapsofmind-save-to-mindma/aldnceeapjjfjgdikefcjhapdmjijdam |
Opis | Save the selected text from the active tab to your MapsOfMind map. |
Rozmiar pliku | 25.93 KB |
Liczba instalacji | 25 |
Aktualna Wersja | 1.0.1 |
Ostatnia Aktualizacja | 2020-11-05 |
Data Publikacji | 2020-11-05 |
Ocena | 3.00/5 Łącznie 2 Oceny |
Deweloper | MapsOfMind |
[email protected] | |
Typ Płatności | free |
Strona Rozszerzenia | https://mapsofmind.com |
Adres URL Strony Pomocy | https://mapsofmind.com/contact |
Adres URL Strony Polityki Prywatności | https://mapsofmind.com/privacy |
Obsługiwane Języki | 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." } } } |