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 |
官方網址 | 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\/*" ] } ] } |