LevellessAoN

Adapts all the creatures in AoN to be levelless

O que é LevellessAoN?

LevellessAoN é uma extensão do Chrome desenvolvida por zhoekstra, e sua principal característica é "Adapts all the creatures in AoN to be levelless".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão LevellessAoN

Baixe arquivos de extensão LevellessAoN no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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!                    

Informações Básicas da Extensão

Nome LevellessAoN LevellessAoN
ID ocjehgppnlclabkodghpaljpdjoggkml
URL Oficial https://chromewebstore.google.com/detail/levellessaon/ocjehgppnlclabkodghpaljpdjoggkml
Descrição Adapts all the creatures in AoN to be levelless
Tamanho do Arquivo 42.23 KB
Contagem de Instalações 47
Versão Atual 0.02
Última Atualização 2020-10-10
Data de Publicação 2020-10-09
Desenvolvedor zhoekstra
Email [email protected]
Tipo de Pagamento free
Idiomas Suportados 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"
        }
    ]
}