LevellessAoN
Adapts all the creatures in AoN to be levelless
LevellessAoN란 무엇입니까?
LevellessAoN은(는) zhoekstra에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Adapts all the creatures in AoN to be levelless"입니다.
확장 프로그램 스크린샷
LevellessAoN 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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 |
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" } ] } |