Axure RP Extension for Chrome

An extension that allows viewing of locally published Axure RP prototypes (HTML files) from Google Chrome.

Axure RP Extension for Chromeคืออะไร?

Axure RP Extension for Chrome เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://axure.com และคุณลักษณะหลักของมันคือ "An extension that allows viewing of locally published Axure RP prototypes (HTML files) from Google Chrome."

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

screenshot

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

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

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

                        Add this extension to view locally published prototypes (HTML files) created from Axure RP in Google Chrome.

This extension requires a high access level to allow the viewing of the file:// protocol. This extension only requires these permissions to allow viewing of prototypes in Chrome - Axure does not track or access any of your information.

IMPORTANT: After installing the extension you must check the setting "Allow access to file URLs". You can access this by going to: Tools > Extensions > Axure RP Extension for Chrome from the Chrome > Preferences menu.

This extension allows you to view Axure RP prototypes in Google Chrome. It is not used to open Axure RP project files (.rp, .rpteam) for editing in Google Chrome.

You do not have to install this extension if you want to view prototypes hosted on the web. For example, you don't need this to view prototypes from Axure Cloud (app.axure.cloud) or Axure Cloud for Business (axure.com/enterprise). 

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 RP Extension for Chrome Axure RP Extension for Chrome
ID dogkpdfcklifaemcdfbildhcofnopogp
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/axure-rp-extension-for-ch/dogkpdfcklifaemcdfbildhcofnopogp
คำอธิบาย An extension that allows viewing of locally published Axure RP prototypes (HTML files) from Google Chrome.
ขนาดไฟล์ 14.44 KB
จำนวนการติดตั้ง 600,000
เวอร์ชันปัจจุบัน 0.7.0
อัปเดตครั้งล่าสุด 2022-10-27
วันที่เผยแพร่ 2018-01-10
คะแนน 3.35/5 รวมทั้งหมด 758 คะแนน
ผู้พัฒนา https://axure.com
อีเมล [email protected]
ประเภทการชำระเงิน free
URL หน้านโยบายความเป็นส่วนตัว https://www.axure.com/privacy
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Axure RP Extension for Chrome",
    "version": "0.7.0",
    "manifest_version": 3,
    "description": "An extension that allows viewing of locally published Axure RP prototypes (HTML files) from Google Chrome.",
    "action": {
        "default_icon": "axurerp-16.png"
    },
    "icons": {
        "48": "axurerp-48.png",
        "128": "axurerp-128.png"
    },
    "permissions": [
        "tabs"
    ],
    "background": {
        "service_worker": "axurerp_extension.js"
    },
    "content_scripts": [
        {
            "matches": [
                "file:\/\/*"
            ],
            "js": [
                "chrome-state-manager.js"
            ],
            "run_at": "document_end",
            "all_frames": true
        }
    ]
}