Miro Web Clipper

Save screenshots into the library

Miro Web Clipper란 무엇입니까?

Miro Web Clipper은(는) https://miro.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Save screenshots into the library"입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Miro Web Clipper 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Capture and save webpage screenshots directly into your Miro library

Miro is the online collaborative whiteboard platform that enables distributed teams to work effectively together, from brainstorming with digital sticky notes to planning and managing Agile workflows.

With the Miro Web Clipper Chrome extension, you can add screenshots to Miro boards to easily annotate, provide feedback, drive inspiration and innovate on existing web pages. 

With this extension you can simply drag and drop files from your desktop or file manager right onto the board. You can also take screenshots of websites in your browser and instantly save them into your Miro library. The first mode takes a screenshot of the entire visible area of the selected tab, the second mode allows you to capture a selected rectangular area, and the third mode allows you to capture the entire page. When you're ready to add the saved web pages to the board, find the Upload tool on the Toolbar in Miro and choose Web Clipper.

Getting started
1. After installation, the extension will automatically be enabled and become active.
2. Refresh tabs with active Miro boards so that the extension works correctly. You only have to do this once — after the initial installation.
3. The extension currently supports Google Chrome. It will not work in other browsers (including Chromium).                    

확장 프로그램 기본 정보

이름 Miro Web Clipper Miro Web Clipper
ID ecfnenchgjbicgaooadfdmcojkcmjblk
공식 URL https://chromewebstore.google.com/detail/miro-web-clipper/ecfnenchgjbicgaooadfdmcojkcmjblk
설명 Save screenshots into the library
파일 크기 3.91 MB
설치 횟수 90,000
현재 버전 1.6.3
최근 업데이트 2023-01-10
출시 날짜 2020-06-16
평점 3.58/5 총 96 개의 평점
개발자 https://miro.com
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 http://miro.com/
도움말 페이지 URL https://help.miro.com/hc/en-us
개인정보 보호 정책 페이지 URL https://miro.com/legal/privacy-policy
지원되는 언어 en,ru
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "__MSG_appName__",
    "version": "1.6.3",
    "description": "__MSG_appDesc__",
    "default_locale": "en",
    "icons": {
        "16": "img\/c_ico.png",
        "48": "img\/icon_48.png",
        "128": "img\/icon_128.png"
    },
    "background": {
        "service_worker": "worker.js",
        "type": "module"
    },
    "action": {
        "default_title": "Miro Web Clipper",
        "default_icon": {
            "32": "img\/inactive.png"
        }
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "css": [
                "style.css"
            ],
            "js": [
                "page.js"
            ]
        }
    ],
    "content_security_policy": {
        "extension_pages": "script-src 'self'; object-src 'self'"
    },
    "externally_connectable": {
        "matches": [
            "https:\/\/miro.com\/*",
            "https:\/\/dev.miro.com\/*",
            "https:\/\/dev.realtimeboard.com\/*"
        ]
    },
    "permissions": [
        "cookies",
        "notifications",
        "activeTab",
        "storage"
    ],
    "host_permissions": [
        "https:\/\/*.miro.com\/",
        "https:\/\/miro.com\/"
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "img\/icon_48.png"
            ],
            "matches": [
                ""
            ]
        }
    ]
}