AoN Attacker

A quick and simple extension to add buttons to Archives of Nethys monster stat blocks for Pathfinder 2e and Starfinder.

O que é AoN Attacker?

AoN Attacker é uma extensão do Chrome desenvolvida por doctor.unspeakable, e sua principal característica é "A quick and simple extension to add buttons to Archives of Nethys monster stat blocks for Pathfinder 2e and Starfinder.".

Capturas de Tela da Extensão

screenshot
screenshot
screenshot

Baixar o arquivo CRX da Extensão AoN Attacker

Baixe arquivos de extensão AoN Attacker 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

                        A quick and simple extension to add buttons to Archives of Nethys monster stat blocks for Pathfinder 2e and Starfinder.                    

Informações Básicas da Extensão

Nome AoN Attacker AoN Attacker
ID lgiclipneiadjdfcmdljmpfhhbjbipbh
URL Oficial https://chromewebstore.google.com/detail/aon-attacker/lgiclipneiadjdfcmdljmpfhhbjbipbh
Descrição A quick and simple extension to add buttons to Archives of Nethys monster stat blocks for Pathfinder 2e and Starfinder.
Tamanho do Arquivo 45 KB
Contagem de Instalações 141
Versão Atual 1.2
Última Atualização 2019-12-19
Data de Publicação 2019-12-19
Classificação 4.88/5 Total de 8 Avaliações
Desenvolvedor doctor.unspeakable
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": "AoN Attacker",
    "version": "1.2",
    "background": {
        "persistent": false,
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.aonprd.com\/Monsters.aspx*",
                "*:\/\/*.aonsrd.com\/AlienDisplay.aspx*"
            ],
            "js": [
                "jquery-3.3.1.min.js",
                "content.js"
            ],
            "css": [
                "inject.css"
            ]
        }
    ],
    "browser_action": {
        "default_title": "2e Aon Attacker",
        "default_popup": "popup.html"
    },
    "options_ui": {
        "page": "popup.html",
        "open_in_tab": false
    },
    "web_accessible_resources": [
        "inject.js"
    ],
    "icons": {
        "84": "icon84.png"
    },
    "permissions": [
        "storage"
    ]
}