LevellessAoN

Adapts all the creatures in AoN to be levelless

LevellessAoNคืออะไร?

LevellessAoN เป็นส่วนขยายของ Chrome ที่พัฒนาโดย zhoekstra และคุณลักษณะหลักของมันคือ "Adapts all the creatures in AoN to be levelless"

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

screenshot

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

ดาวน์โหลดไฟล์ส่วนขยาย LevellessAoN ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        If you're a GM that's unhappy with P2e's level scaling proficiency, and want to try levelless proficiency, you may have troubles doing all the calculations in your head. This extension will adjust the DC's, AC's, attacks, and skill checks of any monsters on Archive of Nethys to what they would be if you did not take level into account.

In the options menu, try even weirder options like 1/2 level scaling!                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ LevellessAoN LevellessAoN
ID ocjehgppnlclabkodghpaljpdjoggkml
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/levellessaon/ocjehgppnlclabkodghpaljpdjoggkml
คำอธิบาย Adapts all the creatures in AoN to be levelless
ขนาดไฟล์ 42.23 KB
จำนวนการติดตั้ง 47
เวอร์ชันปัจจุบัน 0.02
อัปเดตครั้งล่าสุด 2020-10-10
วันที่เผยแพร่ 2020-10-09
ผู้พัฒนา zhoekstra
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "LevellessAoN",
    "description": "Adapts all the creatures in AoN to be levelless",
    "version": "0.02",
    "options_ui": {
        "page": "optionpage.html",
        "open_in_tab": false
    },
    "permissions": [
        "storage"
    ],
    "icons": {
        "32": "icon32.png",
        "64": "icon64.png",
        "128": "icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/2e.aonprd.com\/Monsters.aspx?ID=*",
                "https:\/\/2e.aonprd.com\/Monsters.aspx?ID=*",
                "http:\/\/2e.aonprd.com\/NPCs.aspx?ID=*",
                "https:\/\/2e.aonprd.com\/NPCs.aspx?ID=*"
            ],
            "js": [
                "jquery-3.5.1.slim.min.js",
                "content.js"
            ],
            "run_at": "document_end"
        }
    ]
}