Tales of 2e

Provides TaleSpire dice roller integration for many popular Pathfinder 2e resources.

Vad är Tales of 2e?

Tales of 2e är en Chrome-tillägg utvecklad av Quzzar, och dess huvudfunktion är "Provides TaleSpire dice roller integration for many popular Pathfinder 2e resources.".

Tilläggsskärmbilder

screenshot
screenshot
screenshot

Ladda ner Tales of 2e-förlängningens CRX-fil

Ladda ner Tales of 2e-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        Generates roll links for TaleSpire dice rolls on popular Pathfinder 2e resources including: Archives of Nethys, Pf2 Easytool, and Wanderer's Guide.

Recommend disabling the dice integration sheet option for Wanderer's Guide characters when using this extension.                    

Grundläggande Information om Tillägg

Namn Tales of 2e Tales of 2e
ID pnelkkndgnbalbhbcpacaligcfkdepkd
Officiell webbadress https://chromewebstore.google.com/detail/tales-of-2e/pnelkkndgnbalbhbcpacaligcfkdepkd
Beskrivning Provides TaleSpire dice roller integration for many popular Pathfinder 2e resources.
Filstorlek 62.32 KB
Antal Installationer 362
Aktuell Version 0.4.9
Senast Uppdaterad 2021-04-14
Publiceringsdatum 2021-04-11
Betyg 5.00/5 Totalt 3 Betyg
Utvecklare Quzzar
E-post [email protected]
Betalningssätt free
Stödda Språk en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Tales of 2e",
    "description": "Provides TaleSpire dice roller integration for many popular Pathfinder 2e resources.",
    "version": "0.4.9",
    "icons": {
        "128": "icon_128.png",
        "48": "icon_48.png",
        "16": "icon_16.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/wanderersguide.app\/*"
            ],
            "js": [
                "jquery-3.4.0.min.js",
                "scripts\/utils.js",
                "scripts\/wg.js"
            ],
            "css": [
                "content.css"
            ],
            "run_at": "document_end"
        },
        {
            "matches": [
                "https:\/\/2e.aonprd.com\/*"
            ],
            "js": [
                "jquery-3.4.0.min.js",
                "scripts\/utils.js",
                "scripts\/aon.js"
            ],
            "css": [
                "content.css"
            ],
            "run_at": "document_end"
        },
        {
            "matches": [
                "https:\/\/pf2.easytool.es\/*",
                "http:\/\/www.pf2.easytool.es\/*"
            ],
            "js": [
                "jquery-3.4.0.min.js",
                "scripts\/utils.js",
                "scripts\/easytools.js"
            ],
            "css": [
                "content.css"
            ],
            "run_at": "document_end"
        }
    ]
}