Atom20

Add buttons to run your Roll20 character's macros and sync its attributes on Google Sheets. Works with virtually any TTRPG system!

Atom20란 무엇입니까?

Atom20은(는) trekiros에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Add buttons to run your Roll20 character's macros and sync its attributes on Google Sheets. Works with virtually any TTRPG system!"입니다.

확장 프로그램 스크린샷

Atom20 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        This chrome extension adds buttons to your character sheet on Google Sheets, so you can roll macros and track your character's attributes in Roll20! This lets you play virtually any TTRPG system!

GLOSSARY
-Macros: a pre-determined text, which Atom20 will post to the Roll20 chat when you click a button on Google Sheets.
-Attributes: these are a set of values (a current value and a max value), identified by a name such as "hp", which can then be displayed on a token in Roll20.

SETUP
Atom20 does not do anything unless you A) have both Roll20 and Google Sheets open, and B) the Google Sheets spreadsheet has a sheet named "Atom20" in it.
This special sheet is used to tell the extension where to find your character's attributes, and which macros to set up on the sheet.
A working example can be found here: https://docs.google.com/spreadsheets/d/1lqRLrOac2209-_Yt1RwX2X4cwTO17hgfjYKZNIwn4Xk/edit?usp=sharing 
Start by copy-pasting the sheet named "Atom20" onto your own spreadsheet. Note that if the configuration sheet is hidden, the extension stops working until it is visible again.

1) Setting up which sheet to watch
At the top of the "Atom20" sheet, you will find two cells: "character sheet name" and "character name". 
The "character sheet name" cell tells the extension which sheets to watch. If you are currently on a sheet which is not being watched, the extension does not do anything. The extension cannot watch the sheet named "Atom20".
The "character name" cell tells the extension what name your character has on Roll20: this is the character whose attributes will be updated by the extension.

1b) Setting up more than one sheet to watch
If you wish for Atom20 to watch more than one sheet, for example if you intend to use the extension to build a bestiary with the stat blocks of many different types of enemies, you can use keywords in the "character sheet name" & "character name" cells:
In "character sheet name", you can whitelist or blacklist certain sheets, by using the keywords "include" or "exclude", followed by a colon, and then followed by the list of sheets which must be included or excluded from the watch, separated by commas. For example: "excludes:Index" will watch every sheet except the ones named "Index" and "Atom20".
In "character name", you can input a single asterisk ("*") in place of the character's name. If you do, the extension will look for a character on Roll20 whose name is the same as the name of the sheet that you are on at the moment.

2) Setting up attributes
The attributes table on the left tells the extension which cells to watch. Any change made in the cells will be reflected in your character's sheet on Roll20.
Note 1: the character sheet on Roll20 must have the attributes declared, or they cannot be updated.
Note 2: changes only go one way, and updating an attribute on Roll20 will not be reflected on Google Sheets.

3) Setting up macros
The macros table on the right tells the extension where to put buttons in your character sheet. If you click a cell which has been declared to be a macro, the corresponding text will be posted on Roll20's chat.
Note: if you set up Atom20 watch more than one sheet, you might want part of the macro's text to be set up on the watched sheet itself rather than on the "Atom20" sheet. This is possible through the use of string templates. For example, if a macro's text is "Hello, ${F12}", and the sheet being watched has "World" in cell F12, then the macro will post "Hello, World" on Roll20.

EXAMPLES
Below, you can find example use-cases for Atom20:
-Character sheet: https://docs.google.com/spreadsheets/d/1lqRLrOac2209-_Yt1RwX2X4cwTO17hgfjYKZNIwn4Xk/edit#gid=0
-Bestiary: https://docs.google.com/spreadsheets/d/1ARw_AZhM7qhN416YJpM3pCX5uUPS3CqWqS1RTu-AWfY/edit?usp=sharing

To use those examples, go to "File" => "Make a Copy". You will not be granted edit permission on the public-facing files.                    

확장 프로그램 기본 정보

이름 Atom20 Atom20
ID bgnbdhlpicccdnhhpihcpccejngaionp
공식 URL https://chromewebstore.google.com/detail/atom20/bgnbdhlpicccdnhhpihcpccejngaionp
설명 Add buttons to run your Roll20 character's macros and sync its attributes on Google Sheets. Works with virtually any TTRPG system!
파일 크기 180 KB
설치 횟수 34
현재 버전 1.1
최근 업데이트 2024-02-13
출시 날짜 2021-10-10
개발자 trekiros
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/Trekiros/Atom20
도움말 페이지 URL https://github.com/Trekiros/Atom20/issues
개인정보 보호 정책 페이지 URL https://www.flarefall.com/privacy-policy
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Atom20",
    "version": "1.1",
    "description": "Add buttons to run your Roll20 character's macros and sync its attributes on Google Sheets. Works with virtually any TTRPG system!",
    "permissions": [
        "tabs",
        "identity"
    ],
    "host_permissions": [
        "https:\/\/app.roll20.net\/editor\/",
        "https:\/\/docs.google.com\/spreadsheets\/d\/*"
    ],
    "action": {
        "default_icon": {
            "16": "images\/icon\/icon16.png",
            "24": "images\/icon\/icon24.png",
            "32": "images\/icon\/icon32.png",
            "48": "images\/icon\/icon48.png",
            "64": "images\/icon\/icon64.png",
            "128": "images\/icon\/icon128.png",
            "256": "images\/icon\/icon256.png"
        }
    },
    "content_scripts": [
        {
            "js": [
                "chrome-content.js"
            ],
            "matches": [
                "https:\/\/docs.google.com\/spreadsheets\/d\/*",
                "https:\/\/app.roll20.net\/editor\/"
            ]
        }
    ],
    "background": {
        "service_worker": "chrome-background.js",
        "type": "module"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "src\/*"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAif2PIq3ip14mXIwGUchBmY5TaUDrZp6X+c3zLOpK+GWQAPsl5eOAjNsJX6tbT2Y03COPvqUvM\/hZcA7tbipEg16lSJ2YchAZ9yuIj+acKs+IynE2RWLZRu5xmCN0SqhI0aQrnYJItQU9r+KzdXp8VPm+BRjdfAXRFAMSg4B9yog0bNafQOzo8Pi+Sv2Y0Qtt9rL5cBfZKGpZHONT+SYKMfwTIGf\/rInm1WYezlkZa2L1cmUUYNjXq5z0nQtjeEM0Ic+XBAGqsKw9uXTWrigramgb3uepDBIPsKnrnGMPLtgbFAe0kcpB8F3vx3tyKlg9j6A\/Xa0TL4W6cugXf3z+ZwIDAQAB",
    "oauth2": {
        "client_id": "642932630026-mt1ksqfrlgulc7hjlu8trci7ee8o65dj.apps.googleusercontent.com",
        "scopes": [
            "https:\/\/www.googleapis.com\/auth\/spreadsheets.readonly"
        ]
    },
    "manifest_version": 3
}