Goblin Secretary
If you love playing Dungeons and Dragons and you use an online character sheet from this website:…
什么是Goblin Secretary?
Goblin Secretary是由http://zsavoury.com开发的Chrome扩展程序,该扩展的主要功能是“If you love playing Dungeons and Dragons and you use an online character sheet from this website:…”。
扩展截图
下载Goblin Secretary扩展crx文件
下载Goblin Secretary扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
If you love playing Dungeons and Dragons and you use an online character sheet from this website: http://charactersheet.co.uk/pathfinder you will love this Goblin Secretary. Features: *[x] Tell you what class you are (not very useful yet) *[x] Add a visual health-bar to keep track of how much health points and constitution you have left! (How to use: Make sure your total health is one number [e.g. 97] and when you type in your wounds you add up how much damage was done not how much health is left) *[x] Add a Visual Grit, Luck, Ki-Pool, and/or panache counter based off your class *[x] Add a Control Panel for you to whisk around the screen at your leisure (Control Panle now contains the Health Bar and Grit, Luck, etc. counters) Coming Features: *[ ] User suggestions would be much appreciated
扩展基本信息
名称 | |
ID | jdggnpibajbgpfjdpogbeelimhdnoiki |
官方URL | https://chrome.google.com/webstore/detail/goblin-secretary/jdggnpibajbgpfjdpogbeelimhdnoiki |
简介 | If you love playing Dungeons and Dragons and you use an online character sheet from this website:… |
文件大小 | 114 KB |
安装次数 | 54 |
当前版本 | 1.0.2 |
更新时间 | 2017-01-08 |
上架时间 | 2017-01-08 |
评分 | 1.00/5 共3次评分 |
开发者 | http://zsavoury.com |
付费类型 | free |
支持的语言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Goblin Secretary", "version": "1.0.2", "background": { "persistent": false, "scripts": [ "background.js" ] }, "content_scripts": [ { "matches": [ "file:\/\/\/*", "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "content.js" ], "css": [ "inject.css" ] } ], "browser_action": { "default_title": "Test Extension", "default_popup": "index.html" }, "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" }, "permissions": [ "activeTab", "tabs", "http:\/\/charactersheet.co.uk\/pathfinder\/*" ], "web_accessible_resources": [ "inject.js" ] } |