AoN Attacker
A quick and simple extension to add buttons to Archives of Nethys monster stat blocks for Pathfinder 2e and Starfinder.
Co to jest AoN Attacker?
AoN Attacker to rozszerzenie Chrome opracowane przez doctor.unspeakable, a jego główną funkcją jest „A quick and simple extension to add buttons to Archives of Nethys monster stat blocks for Pathfinder 2e and Starfinder.”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia AoN Attacker
Pobierz pliki rozszerzeń AoN Attacker w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
A quick and simple extension to add buttons to Archives of Nethys monster stat blocks for Pathfinder 2e and Starfinder.
Podstawowe informacje o rozszerzeniu
Nazwa | AoN Attacker |
ID | lgiclipneiadjdfcmdljmpfhhbjbipbh |
Oficjalny URL | https://chromewebstore.google.com/detail/aon-attacker/lgiclipneiadjdfcmdljmpfhhbjbipbh |
Opis | A quick and simple extension to add buttons to Archives of Nethys monster stat blocks for Pathfinder 2e and Starfinder. |
Rozmiar pliku | 45 KB |
Liczba instalacji | 141 |
Aktualna Wersja | 1.2 |
Ostatnia Aktualizacja | 2019-12-19 |
Data Publikacji | 2019-12-19 |
Ocena | 4.88/5 Łącznie 8 Oceny |
Deweloper | doctor.unspeakable |
[email protected] | |
Typ Płatności | free |
Obsługiwane Języki | 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" ] } |