LevellessAoN

Adapts all the creatures in AoN to be levelless

LevellessAoN là gì?

LevellessAoN là một tiện ích mở rộng Chrome được phát triển bởi zhoekstra, và tính năng chính của nó là "Adapts all the creatures in AoN to be levelless".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng LevellessAoN

Tải xuống các tệp mở rộng LevellessAoN dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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!                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên LevellessAoN LevellessAoN
ID ocjehgppnlclabkodghpaljpdjoggkml
URL Chính Thức https://chromewebstore.google.com/detail/levellessaon/ocjehgppnlclabkodghpaljpdjoggkml
Mô tả Adapts all the creatures in AoN to be levelless
Kích Thước Tệp 42.23 KB
Số Lần Cài Đặt 47
Phiên Bản Hiện Tại 0.02
Cập Nhật Lần Cuối 2020-10-10
Ngày Phát Hành 2020-10-09
Nhà Phát Triển zhoekstra
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
        }
    ]
}