Miro Web Clipper

Save screenshots into the library

Co je Miro Web Clipper?

Miro Web Clipper je rozšíření Chrome vyvinuté https://miro.com, a jeho hlavní funkcí je „Save screenshots into the library“.

Snímky obrazovky rozšíření

screenshot
screenshot

Stáhnout soubor CRX rozšíření Miro Web Clipper

Stáhněte si soubory rozšíření Miro Web Clipper ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

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

Základní Informace o Rozšíření

Název Miro Web Clipper Miro Web Clipper
ID ecfnenchgjbicgaooadfdmcojkcmjblk
Oficiální URL https://chromewebstore.google.com/detail/miro-web-clipper/ecfnenchgjbicgaooadfdmcojkcmjblk
Popis Save screenshots into the library
Velikost souboru 3.91 MB
Počet instalací 90,000
Aktuální Verze 1.6.3
Poslední Aktualizace 2023-01-10
Datum Vydání 2020-06-16
Hodnocení 3.58/5 Celkem 96 Hodnocení
Vývojář https://miro.com
E-mail [email protected]
Typ Platby free
Webové stránky Rozšíření http://miro.com/
URL Stránky Nápovědy https://help.miro.com/hc/en-us
URL Stránky Zásad Ochrany Soukromí https://miro.com/legal/privacy-policy
Podporované Jazyky 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": [
                ""
            ]
        }
    ]
}