Tales of 2e
Provides TaleSpire dice roller integration for many popular Pathfinder 2e resources.
什么是Tales of 2e?
Tales of 2e是由Quzzar开发的Chrome扩展程序,该扩展的主要功能是“Provides TaleSpire dice roller integration for many popular Pathfinder 2e resources.”。
扩展截图
下载Tales of 2e扩展crx文件
下载Tales of 2e扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Generates roll links for TaleSpire dice rolls on popular Pathfinder 2e resources including: Archives of Nethys, Pf2 Easytool, and Wanderer's Guide. Recommend disabling the dice integration sheet option for Wanderer's Guide characters when using this extension.
扩展基本信息
名称 | Tales of 2e |
ID | pnelkkndgnbalbhbcpacaligcfkdepkd |
官方URL | https://chromewebstore.google.com/detail/tales-of-2e/pnelkkndgnbalbhbcpacaligcfkdepkd |
简介 | Provides TaleSpire dice roller integration for many popular Pathfinder 2e resources. |
文件大小 | 62.32 KB |
安装次数 | 362 |
当前版本 | 0.4.9 |
更新时间 | 2021-04-14 |
上架时间 | 2021-04-11 |
评分 | 5.00/5 共3次评分 |
开发者 | Quzzar |
电子邮箱 | [email protected] |
付费类型 | free |
支持的语言 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Tales of 2e", "description": "Provides TaleSpire dice roller integration for many popular Pathfinder 2e resources.", "version": "0.4.9", "icons": { "128": "icon_128.png", "48": "icon_48.png", "16": "icon_16.png" }, "content_scripts": [ { "matches": [ "https:\/\/wanderersguide.app\/*" ], "js": [ "jquery-3.4.0.min.js", "scripts\/utils.js", "scripts\/wg.js" ], "css": [ "content.css" ], "run_at": "document_end" }, { "matches": [ "https:\/\/2e.aonprd.com\/*" ], "js": [ "jquery-3.4.0.min.js", "scripts\/utils.js", "scripts\/aon.js" ], "css": [ "content.css" ], "run_at": "document_end" }, { "matches": [ "https:\/\/pf2.easytool.es\/*", "http:\/\/www.pf2.easytool.es\/*" ], "js": [ "jquery-3.4.0.min.js", "scripts\/utils.js", "scripts\/easytools.js" ], "css": [ "content.css" ], "run_at": "document_end" } ] } |