LevellessAoN

Adapts all the creatures in AoN to be levelless

LevellessAoNとは何ですか?

LevellessAoNはzhoekstraによって開発されたChromeの拡張機能で、その主な機能は「Adapts all the creatures in AoN to be levelless」です。

拡張機能のスクリーンショット

screenshot

LevellessAoN拡張機能のCRXファイルをダウンロード

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
Eメール [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"
        }
    ]
}