Neptune's Pride Agent

Enhance NP Triton UI with intel.

Vad är Neptune's Pride Agent?

Neptune's Pride Agent är en Chrome-tillägg utvecklad av Board Games Cafe Extensions, och dess huvudfunktion är "Enhance NP Triton UI with intel.".

Tilläggsskärmbilder

screenshot
screenshot
screenshot
screenshot
screenshot

Ladda ner Neptune's Pride Agent-förlängningens CRX-fil

Ladda ner Neptune's Pride Agent-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        This extension adds a HUD and reporting features to Neptune's Pride (Triton).

The HUD displays an arrival calculator for the first leg of all fleet movements, when you select a fleet. It also displays scanning range time in green when you select an enemy star if that enemy cannot already see your carrier, and in grey if that enemy can see your carrier.

[[Fleet Name]] text in messages now links to the fleet, so that when the message recipient clicks on the fleet you're referring to their map view is navigated to show it, the same way that [[Star Name]] or [[Player Number]] works in the unextended game. In addition, when you type [[#] into the message field, autocomplete shows you which player you have referenced to make it easy to avoid errors.

Much of the extension's capabilities is accessed through hotkeys, the help for which can be triggered by pressing '?' any time you're not in a message text field.

The hotkey '*' copies a summary of all the scanning data for stars you can see into your clipboard. You can then paste this into a message to share the scan info or any subset of it or any edit of it with another player.

You can also share scan data via API keys. The link text [[api:SOMEONES_KEY]] will translate into two links for the recipient, one that lets them view the game as the other player, and another that merges the other player's scan data into the current player's view.

If you type '^', a summary of all the scanning data for fleets that are in motion is put into your clipboard, ordered by ETA. 

If you type '&', a summary of all fleet movements including crude battle predictions is placed on your clipboard, ordered by ETA. This isn't 100% accurate because fleets that arrive on the same tick are not merged together but it still gives a good sense of the outcomes of many situations.

If you type '%' all instances of relative times change to absolute times, making it easier to determine when a multi-hop fleet will arrive at a particular star, for example.

For more hotkeys check the online help.                    

Grundläggande Information om Tillägg

Namn Neptune's Pride Agent Neptune's Pride Agent
ID gpcdekpemhpdcacfnafnflnlakelfefh
Officiell webbadress https://chromewebstore.google.com/detail/neptunes-pride-agent/gpcdekpemhpdcacfnafnflnlakelfefh
Beskrivning Enhance NP Triton UI with intel.
Filstorlek 180 KB
Antal Installationer 539
Aktuell Version 2.2.0
Senast Uppdaterad 2023-02-01
Publiceringsdatum 2021-11-16
Betyg 5.00/5 Totalt 3 Betyg
Utvecklare Board Games Cafe Extensions
E-post [email protected]
Betalningssätt free
Stödda Språk en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Neptune's Pride Agent",
    "description": "Enhance NP Triton UI with intel.",
    "version": "2.2.0",
    "manifest_version": 3,
    "permissions": [
        "scripting"
    ],
    "host_permissions": [
        "https:\/\/np.ironhelmet.com\/*"
    ],
    "action": [],
    "web_accessible_resources": [
        {
            "resources": [
                "intel.js"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/np.ironhelmet.com\/*"
            ],
            "css": [
                "intel.css"
            ]
        }
    ],
    "background": {
        "service_worker": "background.js"
    },
    "icons": {
        "16": "icon_16.png",
        "48": "icon_48.png",
        "128": "icon_128.png"
    }
}