R20Exporter

Export a Roll20 Campaign with all its assets to a ZIP file.

R20Exporterคืออะไร?

R20Exporter เป็นส่วนขยายของ Chrome ที่พัฒนาโดย KaKaRoTo และคุณลักษณะหลักของมันคือ "Export a Roll20 Campaign with all its assets to a ZIP file."

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

screenshot
screenshot
screenshot

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

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

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

                        R20Exporter allows you to export a Roll 20 campaign and all of its assets into a ZIP file for backup/archiving purposes.

To export your campaign go to the settings tab in the Roll20 page (the gear icon on the far right of the sidebar) and at the top you should see a button "Export Campaign to ZIP". Simply click on it, then wait until the ZIP file is generated and downloaded.

While generating the ZIP file, do make sure you have the campaign tab focused in chrome (separate it in its own window if needed), otherwise the download speed of the zip will drop to very very slow transfer speeds since the javascript that generates the zip on the fly will be running as a low priority background process.

The dialog that opens will show you the various steps the script is undertaking and you can click the Log button to see a more detailed log of what is happening. That dialog window will also prevent you from messing around with the campaign. It is best to let the script do its thing unhindered and to not open another campaign in another window. Once the export process is complete, that window will close on its own and the ZIP file will be downloaded automatically.

To report any issues, please go to the GitHub issue tracker : https://github.com/kakaroto/R20Exporter/issues                    

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

ชื่อ R20Exporter R20Exporter
ID apbhfinbjilbkljgcnjjagecnciphnoi
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/r20exporter/apbhfinbjilbkljgcnjjagecnciphnoi
คำอธิบาย Export a Roll20 Campaign with all its assets to a ZIP file.
ขนาดไฟล์ 211 KB
จำนวนการติดตั้ง 13,451
เวอร์ชันปัจจุบัน 0.9.6
อัปเดตครั้งล่าสุด 2023-07-07
วันที่เผยแพร่ 2020-05-06
คะแนน 4.33/5 รวมทั้งหมด 12 คะแนน
ผู้พัฒนา KaKaRoTo
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/kakaroto/R20Exporter
URL หน้าช่วยเหลือ https://github.com/kakaroto/R20Exporter/issues
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "R20Exporter",
    "version": "0.9.6",
    "manifest_version": 2,
    "description": "Export a Roll20 Campaign with all its assets to a ZIP file.",
    "permissions": [
        "*:\/\/app.roll20.net\/editor\/"
    ],
    "icons": {
        "16": "images\/icons\/icon16.png",
        "24": "images\/icons\/icon24.png",
        "32": "images\/icons\/icon32.png",
        "48": "images\/icons\/icon48.png",
        "64": "images\/icons\/icon64.png",
        "128": "images\/icons\/icon128.png",
        "256": "images\/icons\/icon256.png"
    },
    "web_accessible_resources": [
        "src\/R20Exporter.js",
        "libs\/*\/*.js"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/app.roll20.net\/editor\/*"
            ],
            "js": [
                "src\/R20ContentScript.js"
            ],
            "run_at": "document_idle"
        }
    ]
}