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 เป็นส่วนขยายของ Chrome ที่พัฒนาโดย doctor.unspeakable และคุณลักษณะหลักของมันคือ "A quick and simple extension to add buttons to Archives of Nethys monster stat blocks for Pathfinder 2e and Starfinder."

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย AoN Attacker

ดาวน์โหลดไฟล์ส่วนขยาย 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 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"
    ]
}