Dominion Point Counter
Dominion Point Counter
Dominion Point Counter là gì?
Dominion Point Counter là một tiện ích mở rộng Chrome được phát triển bởi drheld, và tính năng chính của nó là "Dominion Point Counter".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Dominion Point Counter
Tải xuống các tệp mở rộng Dominion Point Counter dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | |
ID | oilbmfdendkfeipedcpnpifkclfckalk |
URL Chính Thức | https://chrome.google.com/webstore/detail/dominion-point-counter/oilbmfdendkfeipedcpnpifkclfckalk |
Mô tả | Dominion Point Counter |
Kích Thước Tệp | 52.86 KB |
Số Lần Cài Đặt | 328 |
Phiên Bản Hiện Tại | 5.3.5 |
Cập Nhật Lần Cuối | 2012-07-16 |
Ngày Phát Hành | 2012-07-16 |
Đánh Giá | 4.81/5 Tổng số 26 Đánh Giá |
Nhà Phát Triển | drheld |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/drheld/isotropic_dominion_extension |
Ngôn Ngữ Được Hỗ Trợ | 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 } |