Axure Cloud Extension

Capture screenshots of your prototype to attach to Axure Cloud comments. When commenting, click the camera icon to add a screenshot.

Apa itu Axure Cloud Extension?

Axure Cloud Extension adalah ekstensi Chrome yang dikembangkan oleh https://axure.com, dan fitur utamanya adalah "Capture screenshots of your prototype to attach to Axure Cloud comments. When commenting, click the camera icon to add a screenshot.".

Screenshot Ekstensi

screenshot
screenshot
screenshot
screenshot

Unduh Berkas CRX Ekstensi Axure Cloud Extension

Unduh file ekstensi Axure Cloud Extension dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        Easily add context to your Axure Cloud discussions by attaching screenshots of your prototype to a comment. After installing the extension, refresh your browser, and then click the camera icon when adding a comment.

Please note: This is only for use for screenshotting in Axure Cloud and attaching to comments within Axure Cloud discussions and is not a general screenshot tool.
If you have any issues or questions, please email [email protected] To download the latest version of Axure RP or a free 30-day trial, visit axure.com/download.                    

Informasi Dasar Ekstensi

Nama Axure Cloud Extension Axure Cloud Extension
ID fiidicpfcmmoobdpadllfjklbdegfjaf
URL Resmi https://chromewebstore.google.com/detail/axure-cloud-extension/fiidicpfcmmoobdpadllfjklbdegfjaf
Deskripsi Capture screenshots of your prototype to attach to Axure Cloud comments. When commenting, click the camera icon to add a screenshot.
Ukuran File 18.74 KB
Jumlah Instalasi 12,179
Versi Saat Ini 1.2.1
Terakhir Diperbarui 2022-11-02
Tanggal Publikasi 2019-03-11
Penilaian 3.33/5 Total 18 Penilaian
Pengembang https://axure.com
Email [email protected]
Tipe Pembayaran free
URL Halaman Bantuan https://docs.axure.com/axure-cloud/reference/discussions/#screenshots-in-discussions
URL Halaman Kebijakan Privasi https://www.axure.com/privacy
Bahasa yang Didukung en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Axure Cloud Extension",
    "version": "1.2.1",
    "description": "Capture screenshots of your prototype to attach to Axure Cloud comments. When commenting, click the camera icon to add a screenshot.",
    "action": {
        "default_icon": "cloud_16.png",
        "default_title": "Axure Cloud Screenshot Extension"
    },
    "permissions": [
        "tabs"
    ],
    "host_permissions": [
        ""
    ],
    "background": {
        "service_worker": "background.js",
        "type": "module"
    },
    "content_scripts": [
        {
            "js": [
                "axScreenshot.js"
            ],
            "matches": [
                ""
            ],
            "run_at": "document_end",
            "all_frames": true
        }
    ],
    "icons": {
        "16": "cloud_16.png",
        "32": "cloud_32.png",
        "64": "cloud_64.png",
        "128": "cloud_128.png"
    },
    "commands": {
        "shortcutScreenshot": {
            "suggested_key": {
                "default": "Ctrl+Shift+1",
                "mac": "Ctrl+Shift+1"
            },
            "description": "Create Screenshot via Keyboard"
        }
    }
}