LevellessAoN

Adapts all the creatures in AoN to be levelless

Co to jest LevellessAoN?

LevellessAoN to rozszerzenie Chrome opracowane przez zhoekstra, a jego główną funkcją jest „Adapts all the creatures in AoN to be levelless”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia LevellessAoN

Pobierz pliki rozszerzeń LevellessAoN w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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!                    

Podstawowe informacje o rozszerzeniu

Nazwa LevellessAoN LevellessAoN
ID ocjehgppnlclabkodghpaljpdjoggkml
Oficjalny URL https://chromewebstore.google.com/detail/levellessaon/ocjehgppnlclabkodghpaljpdjoggkml
Opis Adapts all the creatures in AoN to be levelless
Rozmiar pliku 42.23 KB
Liczba instalacji 47
Aktualna Wersja 0.02
Ostatnia Aktualizacja 2020-10-10
Data Publikacji 2020-10-09
Deweloper zhoekstra
E-mail [email protected]
Typ Płatności free
Obsługiwane Języki 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"
        }
    ]
}