MapsOfMind: Save to mindmap

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

MapsOfMind: Save to mindmap란 무엇입니까?

MapsOfMind: Save to mindmap은(는) MapsOfMind에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Save the selected text from the active tab to your MapsOfMind map."입니다.

확장 프로그램 스크린샷

screenshot

MapsOfMind: Save to mindmap 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

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