AoN Attacker
A quick and simple extension to add buttons to Archives of Nethys monster stat blocks for Pathfinder 2e and Starfinder.
什么是AoN Attacker?
AoN Attacker是由doctor.unspeakable开发的Chrome扩展程序,该扩展的主要功能是“A quick and simple extension to add buttons to Archives of Nethys monster stat blocks for Pathfinder 2e and Starfinder.”。
扩展截图
下载AoN Attacker扩展crx文件
下载AoN Attacker扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
A quick and simple extension to add buttons to Archives of Nethys monster stat blocks for Pathfinder 2e and Starfinder.
扩展基本信息
名称 | AoN Attacker |
ID | lgiclipneiadjdfcmdljmpfhhbjbipbh |
官方URL | https://chromewebstore.google.com/detail/aon-attacker/lgiclipneiadjdfcmdljmpfhhbjbipbh |
简介 | A quick and simple extension to add buttons to Archives of Nethys monster stat blocks for Pathfinder 2e and Starfinder. |
文件大小 | 45 KB |
安装次数 | 141 |
当前版本 | 1.2 |
更新时间 | 2019-12-19 |
上架时间 | 2019-12-19 |
评分 | 4.88/5 共8次评分 |
开发者 | doctor.unspeakable |
电子邮箱 | [email protected] |
付费类型 | free |
支持的语言 | 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" ] } |