LevellessAoN

Adapts all the creatures in AoN to be levelless

Was ist LevellessAoN?

LevellessAoN ist eine Chrome-Erweiterung, die von zhoekstra entwickelt wurde, und ihr Hauptmerkmal ist "Adapts all the creatures in AoN to be levelless".

Erweiterungsscreenshots

screenshot

LevellessAoN-Erweiterungs-CRX-Datei herunterladen

Laden Sie LevellessAoN-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        If you're a GM that's unhappy with P2e's level scaling proficiency, and want to try levelless proficiency, you may have troubles doing all the calculations in your head. This extension will adjust the DC's, AC's, attacks, and skill checks of any monsters on Archive of Nethys to what they would be if you did not take level into account.

In the options menu, try even weirder options like 1/2 level scaling!                    

Grundlegende Informationen zur Erweiterung

Name LevellessAoN LevellessAoN
ID ocjehgppnlclabkodghpaljpdjoggkml
Offizielle URL https://chromewebstore.google.com/detail/levellessaon/ocjehgppnlclabkodghpaljpdjoggkml
Beschreibung Adapts all the creatures in AoN to be levelless
Dateigröße 42.23 KB
Installationsanzahl 47
Aktuelle Version 0.02
Letztes Update 2020-10-10
Veröffentlichungsdatum 2020-10-09
Entwickler zhoekstra
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "LevellessAoN",
    "description": "Adapts all the creatures in AoN to be levelless",
    "version": "0.02",
    "options_ui": {
        "page": "optionpage.html",
        "open_in_tab": false
    },
    "permissions": [
        "storage"
    ],
    "icons": {
        "32": "icon32.png",
        "64": "icon64.png",
        "128": "icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/2e.aonprd.com\/Monsters.aspx?ID=*",
                "https:\/\/2e.aonprd.com\/Monsters.aspx?ID=*",
                "http:\/\/2e.aonprd.com\/NPCs.aspx?ID=*",
                "https:\/\/2e.aonprd.com\/NPCs.aspx?ID=*"
            ],
            "js": [
                "jquery-3.5.1.slim.min.js",
                "content.js"
            ],
            "run_at": "document_end"
        }
    ]
}