AoN Attacker
A quick and simple extension to add buttons to Archives of Nethys monster stat blocks for Pathfinder 2e and Starfinder.
Cos'è AoN Attacker?
AoN Attacker è un'estensione di Chrome sviluppata da doctor.unspeakable, e la sua funzione principale è "A quick and simple extension to add buttons to Archives of Nethys monster stat blocks for Pathfinder 2e and Starfinder.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione AoN Attacker
Scarica i file di estensione AoN Attacker in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
A quick and simple extension to add buttons to Archives of Nethys monster stat blocks for Pathfinder 2e and Starfinder.
Informazioni di Base sull'Estensione
Nome | AoN Attacker |
ID | lgiclipneiadjdfcmdljmpfhhbjbipbh |
URL Ufficiale | https://chromewebstore.google.com/detail/aon-attacker/lgiclipneiadjdfcmdljmpfhhbjbipbh |
Descrizione | A quick and simple extension to add buttons to Archives of Nethys monster stat blocks for Pathfinder 2e and Starfinder. |
Dimensione del File | 45 KB |
Conteggio Installazioni | 141 |
Versione Corrente | 1.2 |
Ultimo Aggiornamento | 2019-12-19 |
Data di Pubblicazione | 2019-12-19 |
Valutazione | 4.88/5 Totale 8 Valutazioni |
Sviluppatore | doctor.unspeakable |
[email protected] | |
Tipo di Pagamento | free |
Lingue Supportate | 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" ] } |