Roll20 API and Sheet Autouploader
An extension to automate the uploading of new API and custom sheet code to the API and sheet sandbox.
¿Qué es Roll20 API and Sheet Autouploader?
Roll20 API and Sheet Autouploader es una extensión de Chrome desarrollada por scaseydv, y su función principal es "An extension to automate the uploading of new API and custom sheet code to the API and sheet sandbox.".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión Roll20 API and Sheet Autouploader
Descarga archivos de extensión Roll20 API and Sheet Autouploader en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.
Instrucciones de Uso de la Extensión
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.
Información Básica de la Extensión
Nombre | Roll20 API and Sheet Autouploader |
ID | hboggmcfmaakkifgifjbccnpfmnegick |
URL Oficial | https://chromewebstore.google.com/detail/roll20-api-and-sheet-auto/hboggmcfmaakkifgifjbccnpfmnegick |
Descripción | An extension to automate the uploading of new API and custom sheet code to the API and sheet sandbox. |
Tamaño del Archivo | 41.02 KB |
Cantidad de Instalaciones | 493 |
Versión Actual | 1.00 |
Última Actualización | 2022-05-28 |
Fecha de Publicación | 2022-05-19 |
Calificación | 5.00/5 Total de 4 Calificaciones |
Desarrollador | scaseydv |
Correo electrónico | [email protected] |
Tipo de Pago | free |
Idiomas Soportados | 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\/*" ] } ] } |