AoN Attacker
A quick and simple extension to add buttons to Archives of Nethys monster stat blocks for Pathfinder 2e and Starfinder.
Was ist AoN Attacker?
AoN Attacker ist eine Chrome-Erweiterung, die von doctor.unspeakable entwickelt wurde, und ihr Hauptmerkmal ist "A quick and simple extension to add buttons to Archives of Nethys monster stat blocks for Pathfinder 2e and Starfinder.".
Erweiterungsscreenshots
AoN Attacker-Erweiterungs-CRX-Datei herunterladen
Laden Sie AoN Attacker-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
A quick and simple extension to add buttons to Archives of Nethys monster stat blocks for Pathfinder 2e and Starfinder.
Grundlegende Informationen zur Erweiterung
Name | AoN Attacker |
ID | lgiclipneiadjdfcmdljmpfhhbjbipbh |
Offizielle URL | https://chromewebstore.google.com/detail/aon-attacker/lgiclipneiadjdfcmdljmpfhhbjbipbh |
Beschreibung | A quick and simple extension to add buttons to Archives of Nethys monster stat blocks for Pathfinder 2e and Starfinder. |
Dateigröße | 45 KB |
Installationsanzahl | 141 |
Aktuelle Version | 1.2 |
Letztes Update | 2019-12-19 |
Veröffentlichungsdatum | 2019-12-19 |
Bewertung | 4.88/5 Insgesamt 8 Bewertungen |
Entwickler | doctor.unspeakable |
[email protected] | |
Zahlungsart | free |
Unterstützte Sprachen | 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" ] } |