Miro Web Clipper

Save screenshots into the library

Miro Web Clipper là gì?

Miro Web Clipper là một tiện ích mở rộng Chrome được phát triển bởi https://miro.com, và tính năng chính của nó là "Save screenshots into the library".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Miro Web Clipper

Tải xuống các tệp mở rộng Miro Web Clipper dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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).                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Miro Web Clipper Miro Web Clipper
ID ecfnenchgjbicgaooadfdmcojkcmjblk
URL Chính Thức https://chromewebstore.google.com/detail/miro-web-clipper/ecfnenchgjbicgaooadfdmcojkcmjblk
Mô tả Save screenshots into the library
Kích Thước Tệp 3.91 MB
Số Lần Cài Đặt 90,000
Phiên Bản Hiện Tại 1.6.3
Cập Nhật Lần Cuối 2023-01-10
Ngày Phát Hành 2020-06-16
Đánh Giá 3.58/5 Tổng số 96 Đánh Giá
Nhà Phát Triển https://miro.com
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng http://miro.com/
URL Trang Trợ Giúp https://help.miro.com/hc/en-us
URL Trang Chính Sách Bảo Mật https://miro.com/legal/privacy-policy
Ngôn Ngữ Được Hỗ Trợ 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": [
                ""
            ]
        }
    ]
}