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란 무엇입니까?
Roll20 API and Sheet Autouploader은(는) scaseydv에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "An extension to automate the uploading of new API and custom sheet code to the API and sheet sandbox."입니다.
확장 프로그램 스크린샷
Roll20 API and Sheet Autouploader 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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.
확장 프로그램 기본 정보
이름 | Roll20 API and Sheet Autouploader |
ID | hboggmcfmaakkifgifjbccnpfmnegick |
공식 URL | https://chromewebstore.google.com/detail/roll20-api-and-sheet-auto/hboggmcfmaakkifgifjbccnpfmnegick |
설명 | An extension to automate the uploading of new API and custom sheet code to the API and sheet sandbox. |
파일 크기 | 41.02 KB |
설치 횟수 | 493 |
현재 버전 | 1.00 |
최근 업데이트 | 2022-05-28 |
출시 날짜 | 2022-05-19 |
평점 | 5.00/5 총 4 개의 평점 |
개발자 | scaseydv |
이메일 | [email protected] |
결제 유형 | free |
지원되는 언어 | 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\/*" ] } ] } |