LevellessAoN
Adapts all the creatures in AoN to be levelless
Qu'est-ce que LevellessAoN ?
LevellessAoN est une extension Chrome développée par zhoekstra, et sa fonction principale est "Adapts all the creatures in AoN to be levelless".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension LevellessAoN
Téléchargez les fichiers d'extension LevellessAoN au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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!
Informations de Base sur l'Extension
Nom | LevellessAoN |
ID | ocjehgppnlclabkodghpaljpdjoggkml |
URL Officiel | https://chromewebstore.google.com/detail/levellessaon/ocjehgppnlclabkodghpaljpdjoggkml |
Description | Adapts all the creatures in AoN to be levelless |
Taille du Fichier | 42.23 KB |
Nombre d'Installations | 47 |
Version Actuelle | 0.02 |
Dernière Mise à Jour | 2020-10-10 |
Date de Publication | 2020-10-09 |
Développeur | zhoekstra |
[email protected] | |
Type de Paiement | free |
Langues Prises en Charge | 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" } ] } |