LevellessAoN

Adapts all the creatures in AoN to be levelless

Apa itu LevellessAoN?

LevellessAoN adalah ekstensi Chrome yang dikembangkan oleh zhoekstra, dan fitur utamanya adalah "Adapts all the creatures in AoN to be levelless".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi LevellessAoN

Unduh file ekstensi LevellessAoN dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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!                    

Informasi Dasar Ekstensi

Nama LevellessAoN LevellessAoN
ID ocjehgppnlclabkodghpaljpdjoggkml
URL Resmi https://chromewebstore.google.com/detail/levellessaon/ocjehgppnlclabkodghpaljpdjoggkml
Deskripsi Adapts all the creatures in AoN to be levelless
Ukuran File 42.23 KB
Jumlah Instalasi 47
Versi Saat Ini 0.02
Terakhir Diperbarui 2020-10-10
Tanggal Publikasi 2020-10-09
Pengembang zhoekstra
Email [email protected]
Tipe Pembayaran free
Bahasa yang Didukung 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"
        }
    ]
}