Roll20 API and Sheet Autouploader
An extension to automate the uploading of new API and custom sheet code to the API and sheet sandbox.
Roll20 API and Sheet Autouploader là gì?
Roll20 API and Sheet Autouploader là một tiện ích mở rộng Chrome được phát triển bởi scaseydv, và tính năng chính của nó là "An extension to automate the uploading of new API and custom sheet code to the API and sheet sandbox.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Roll20 API and Sheet Autouploader
Tải xuống các tệp mở rộng Roll20 API and Sheet Autouploader dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
Do you build API scripts or character sheets on Roll20? This script will automate the upload of your code to the Roll20 sandboxes. Use your favorite code editor or IDE and let the Autouploader take care of updating the code on Roll20. Tell the extension what directory to monitor when you open a sheet sandbox game on Roll20 and it will take care of updating your HTML, CSS, and translation files in the sandbox as you save changes. This initial release only supports character sheet file upload to the sheet sandbox. The API upload functionality is in the works. PLEASE NOTE: The auto uploader is compatible with most chromium browsers, however Brave has disabled the File System Access API that powers the extension. Other chromium browsers may have also disabled this API.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Roll20 API and Sheet Autouploader |
ID | hboggmcfmaakkifgifjbccnpfmnegick |
URL Chính Thức | https://chromewebstore.google.com/detail/roll20-api-and-sheet-auto/hboggmcfmaakkifgifjbccnpfmnegick |
Mô tả | An extension to automate the uploading of new API and custom sheet code to the API and sheet sandbox. |
Kích Thước Tệp | 41.02 KB |
Số Lần Cài Đặt | 493 |
Phiên Bản Hiện Tại | 1.00 |
Cập Nhật Lần Cuối | 2022-05-28 |
Ngày Phát Hành | 2022-05-19 |
Đánh Giá | 5.00/5 Tổng số 4 Đánh Giá |
Nhà Phát Triển | scaseydv |
[email protected] | |
Loại Thanh Toán | free |
Ngôn Ngữ Được Hỗ Trợ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Roll20 API and Sheet Autouploader", "description": "An extension to automate the uploading of new API and custom sheet code to the API and sheet sandbox.", "version": "1.00", "manifest_version": 3, "icons": { "32": "32icon.png", "48": "48icon.png", "128": "128icon.png" }, "content_scripts": [ { "matches": [ "*:\/\/app.roll20.net\/editor\/", "*:\/\/app.roll20staging.net\/editor\/" ], "js": [ "contentScript.js" ] } ], "web_accessible_resources": [ { "resources": [ "campaignInject.js", "campaignInject.css", "apiInject.js", "interface.css", "sheetDialog.js" ], "matches": [ "*:\/\/*.roll20.net\/*", "*:\/\/*.roll20staging.net\/*" ] } ] } |