AoN Attacker
A quick and simple extension to add buttons to Archives of Nethys monster stat blocks for Pathfinder 2e and Starfinder.
Hvad er AoN Attacker?
AoN Attacker er en Chrome-udvidelse udviklet af doctor.unspeakable, og dens hovedfunktion er "A quick and simple extension to add buttons to Archives of Nethys monster stat blocks for Pathfinder 2e and Starfinder.".
Udvidelsesskærmbilleder
Download AoN Attacker-udvidelses-CRX-fil
Download AoN Attacker-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
A quick and simple extension to add buttons to Archives of Nethys monster stat blocks for Pathfinder 2e and Starfinder.
Grundlæggende oplysninger om udvidelsen
Navn | AoN Attacker |
ID | lgiclipneiadjdfcmdljmpfhhbjbipbh |
Officiel URL | https://chromewebstore.google.com/detail/aon-attacker/lgiclipneiadjdfcmdljmpfhhbjbipbh |
Beskrivelse | A quick and simple extension to add buttons to Archives of Nethys monster stat blocks for Pathfinder 2e and Starfinder. |
Filstørrelse | 45 KB |
Antal Installationer | 141 |
Nuværende Version | 1.2 |
Senest Opdateret | 2019-12-19 |
Udgivelsesdato | 2019-12-19 |
Bedømmelse | 4.88/5 Samlet 8 Bedømmelser |
Udvikler | doctor.unspeakable |
[email protected] | |
Betalingsmetode | free |
Understøttede Sprog | 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" ] } |