Dominion Point Counter
Dominion Point Counter
什么是Dominion Point Counter?
Dominion Point Counter是由drheld开发的Chrome扩展程序,该扩展的主要功能是“Dominion Point Counter”。
扩展截图
下载Dominion Point Counter扩展crx文件
下载Dominion Point Counter扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
This extension keeps track of info during a game of dominion on http://dominion.isotropic.org.
Basics:
- tracks # of cards and points for each player
- can replace the faq/signout buttons with this info
- acts as a chatbot and introduces commands at game start
Commands supported currently:
- !status - Prints out the current points / cards for all players.
- !disable - If allowed (default), turns off the point counter
Extension disabling can be turned off, but only if the user status message mentions the point counter (Auto▼Count). This means you'll never be surprised by someone having a point counter and then not be able to disable it.
You can see the source code and file bugs / contribute here:
https://github.com/drheld/isotropic_dominion_extension
Please be sure to report any issues there.
Known issues:
- Masquerade with more than 2 players causes unknown info. In such a case, the extension can't see anything. It writes a warning about this.
== v5.3.5 ==
- Nothing meaningful. Update manifest file since chrome wants me to.
== v5.3.4 ==
- Add screenshot link to the status announcement.
== v5.3.3 ==
- Remove accidental inclusion of .git files.
== v5.3.2 ==
- Work around isotropic logs for Possession + Border Village
== v5.3.1 ==
- Hide per card counts on disable.
== v5.3 ==
- Preserve automatch settings.
== v5.2.4 ==
- Fix various cards with Trader that are missing gain messages.
== v5.2.3 ==
- Fix Mountebank with Trader
== v5.2.2 ==
- Fix issue with !status output including html.
== v5.2.1 ==
- Fix issue with first turn gains (from Ill-Gotten Gains, etc).
== v5.2 ==
- Handle player names with commas.
- Use player colours in status strings.
== v5.1 ==
- Handle Trader + Embargo.
- Accept player names with only '.' in them.
== v5.0 ==
- Added UI for displaying all cards owned by all players.
- Several bug fixes.
== v4.7.2 ==
- Fix bug in counting of Tunnel as a victory card from last release.
== v4.7.1 ==
- Don't count Tunnel / Fool's Gold as action cards for Vineyard.
== v4.7 ==
- Added a new !details command which shows entire decks for each player.
== v4.6.2 ==
- Fixes for some uses of Tunnel and Noble Brigands.
== v4.6.1 ==
- Add support for Noble Brigands.
== v4.6 ==
- Properly handle Tunnel.
- Fix Saboteur with multiple reveals.
- Fix handling of some player names.
== v4.5 ==
- Fix issue with Trader and Mountebank.
- Fixed automatic bugreporting.
== v4.4 ==
- Initial Hinterlands support.
== v4.3.3 ==
- Restore missing messages like "Waiting for Bob to discard...".
== v4.3.2 ==
- Fixed a bug that allowed disabling disable without setting a status message.
== v4.3.1 ==
- Improvements on how logs are retained.
== v4.3 ==
- Fix extension after latest server release.
== v4.2 ==
- Only allow disable until turn 5.
== v4.1.3 ==
- Fixed issues reported in displaying scores.
== v4.1.2 ==
- Fixed a Possession bug.
== v4.1.1 ==
- Fixed a few small reload bugs.
== v4.1 ==
- Stop showing full game log after disable.
== v4.0 ==
- Added support for solitaire games.
- Show full game log instead of recent turns (like isotropic used to do).
- Fixed a bug where built-in point tracker wasn't required after the first game.
== v3.3.4 ==
- Fix showing special counts (like #actions, #uniques, #duchies).
== v3.3.3 ==
- Make lobby load less flaky. Removed extra debug statement.
== v3.3.2 ==
- Always enable point tracker for proposed and automatched games. 扩展基本信息
| 名称 | |
| ID | oilbmfdendkfeipedcpnpifkclfckalk |
| 官方URL | https://chrome.google.com/webstore/detail/dominion-point-counter/oilbmfdendkfeipedcpnpifkclfckalk |
| 简介 | Dominion Point Counter |
| 文件大小 | 52.86 KB |
| 安装次数 | 328 |
| 当前版本 | 5.3.5 |
| 更新时间 | 2012-07-16 |
| 上架时间 | 2012-07-16 |
| 评分 | 4.81/5 共26次评分 |
| 开发者 | drheld |
| 付费类型 | free |
| 扩展官网 | https://github.com/drheld/isotropic_dominion_extension |
| 支持的语言 | en |
| manifest.json | |
{
"update_url": "http:\/\/clients2.google.com\/service\/update2\/crx",
"content_scripts": [
{
"js": [
"jquery.js",
"common.js",
"card_list.js",
"dominion.js",
"card_counts.js"
],
"css": [
"styles.css"
],
"matches": [
"http:\/\/dominion.isotropic.org\/play"
]
},
{
"js": [
"jquery.js",
"common.js",
"card_list.js",
"dominion.js",
"card_counts.js",
"debugger.js"
],
"matches": [
"http:\/\/*.dominion-point-counter.appspot.com\/debug*"
]
},
{
"js": [
"jquery.js",
"common.js",
"options.js"
],
"css": [
"styles.css"
],
"matches": [
"http:\/\/dominion.isotropic.org\/"
]
},
{
"js": [
"jquery.js",
"common.js",
"login.js"
],
"matches": [
"http:\/\/dominion.isotropic.org\/*loggedin*"
]
}
],
"permissions": [
"http:\/\/dominion.isotropic.org\/",
"http:\/\/dominion-point-counter.appspot.com\/"
],
"background": {
"page": "background.html"
},
"description": "Dominion Point Counter",
"name": "Dominion Point Counter",
"version": "5.3.5",
"manifest_version": 2
} | |