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ファイルをダウンロード
Roll20 API and Sheet Autouploader拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
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 |
Eメール | [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\/*" ] } ] } |