Dominion Point Counter

Dominion Point Counter

Was ist Dominion Point Counter?

Dominion Point Counter ist eine Chrome-Erweiterung, die von drheld entwickelt wurde, und ihr Hauptmerkmal ist "Dominion Point Counter".

Erweiterungsscreenshots

screenshot
screenshot
screenshot

Dominion Point Counter-Erweiterungs-CRX-Datei herunterladen

Laden Sie Dominion Point Counter-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name Dominion Point Counter Dominion Point Counter
ID oilbmfdendkfeipedcpnpifkclfckalk
Offizielle URL https://chrome.google.com/webstore/detail/dominion-point-counter/oilbmfdendkfeipedcpnpifkclfckalk
Beschreibung Dominion Point Counter
Dateigröße 52.86 KB
Installationsanzahl 328
Aktuelle Version 5.3.5
Letztes Update 2012-07-16
Veröffentlichungsdatum 2012-07-16
Bewertung 4.81/5 Insgesamt 26 Bewertungen
Entwickler drheld
Zahlungsart free
Erweiterungswebsite https://github.com/drheld/isotropic_dominion_extension
Unterstützte Sprachen 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
}