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 |
官方網址 | 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" } ] } |