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 مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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"
    ]
}