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." } } } |