AoN Attacker
A quick and simple extension to add buttons to Archives of Nethys monster stat blocks for Pathfinder 2e and Starfinder.
Apa itu AoN Attacker?
AoN Attacker adalah ekstensi Chrome yang dikembangkan oleh doctor.unspeakable, dan fitur utamanya adalah "A quick and simple extension to add buttons to Archives of Nethys monster stat blocks for Pathfinder 2e and Starfinder.".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi AoN Attacker
Unduh file ekstensi AoN Attacker dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.
Petunjuk Penggunaan Ekstensi
A quick and simple extension to add buttons to Archives of Nethys monster stat blocks for Pathfinder 2e and Starfinder.
Informasi Dasar Ekstensi
Nama | AoN Attacker |
ID | lgiclipneiadjdfcmdljmpfhhbjbipbh |
URL Resmi | https://chromewebstore.google.com/detail/aon-attacker/lgiclipneiadjdfcmdljmpfhhbjbipbh |
Deskripsi | A quick and simple extension to add buttons to Archives of Nethys monster stat blocks for Pathfinder 2e and Starfinder. |
Ukuran File | 45 KB |
Jumlah Instalasi | 141 |
Versi Saat Ini | 1.2 |
Terakhir Diperbarui | 2019-12-19 |
Tanggal Publikasi | 2019-12-19 |
Penilaian | 4.88/5 Total 8 Penilaian |
Pengembang | doctor.unspeakable |
[email protected] | |
Tipe Pembayaran | free |
Bahasa yang Didukung | 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" ] } |