Axure Cloud Extension

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

Axure Cloud Extensionคืออะไร?

Axure Cloud Extension เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://axure.com และคุณลักษณะหลักของมันคือ "Capture screenshots of your prototype to attach to Axure Cloud comments. When commenting, click the camera icon to add a screenshot."

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Axure Cloud Extension

ดาวน์โหลดไฟล์ส่วนขยาย Axure Cloud Extension ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Axure Cloud Extension Axure Cloud Extension
ID fiidicpfcmmoobdpadllfjklbdegfjaf
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/axure-cloud-extension/fiidicpfcmmoobdpadllfjklbdegfjaf
คำอธิบาย Capture screenshots of your prototype to attach to Axure Cloud comments. When commenting, click the camera icon to add a screenshot.
ขนาดไฟล์ 18.74 KB
จำนวนการติดตั้ง 12,179
เวอร์ชันปัจจุบัน 1.2.1
อัปเดตครั้งล่าสุด 2022-11-02
วันที่เผยแพร่ 2019-03-11
คะแนน 3.33/5 รวมทั้งหมด 18 คะแนน
ผู้พัฒนา https://axure.com
อีเมล [email protected]
ประเภทการชำระเงิน free
URL หน้าช่วยเหลือ https://docs.axure.com/axure-cloud/reference/discussions/#screenshots-in-discussions
URL หน้านโยบายความเป็นส่วนตัว https://www.axure.com/privacy
ภาษาที่รองรับ 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"
        }
    }
}