AoN Attacker

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

Qu'est-ce que AoN Attacker ?

AoN Attacker est une extension Chrome développée par doctor.unspeakable, et sa fonction principale est "A quick and simple extension to add buttons to Archives of Nethys monster stat blocks for Pathfinder 2e and Starfinder.".

Captures d'Écran de l'Extension

screenshot
screenshot
screenshot

Télécharger le fichier CRX de l'extension AoN Attacker

Téléchargez les fichiers d'extension AoN Attacker au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

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

Informations de Base sur l'Extension

Nom AoN Attacker AoN Attacker
ID lgiclipneiadjdfcmdljmpfhhbjbipbh
URL Officiel https://chromewebstore.google.com/detail/aon-attacker/lgiclipneiadjdfcmdljmpfhhbjbipbh
Description A quick and simple extension to add buttons to Archives of Nethys monster stat blocks for Pathfinder 2e and Starfinder.
Taille du Fichier 45 KB
Nombre d'Installations 141
Version Actuelle 1.2
Dernière Mise à Jour 2019-12-19
Date de Publication 2019-12-19
Évaluation 4.88/5 Total 8 Évaluations
Développeur doctor.unspeakable
Email [email protected]
Type de Paiement free
Langues Prises en Charge 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"
    ]
}