Simple Dredark Tools (drednot.io)

An extension for some tools in the Deep Space Airships (drednot.io) game.

Vad är Simple Dredark Tools (drednot.io)?

Simple Dredark Tools (drednot.io) är en Chrome-tillägg utvecklad av Blueyescat, och dess huvudfunktion är "An extension for some tools in the Deep Space Airships (drednot.io) game.".

Tilläggsskärmbilder

screenshot
screenshot
screenshot
screenshot
screenshot

Ladda ner Simple Dredark Tools (drednot.io)-förlängningens CRX-fil

Ladda ner Simple Dredark Tools (drednot.io)-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

                        Adds some convenience tools in the Deep Space Airships (drednot.io) game. Does not provide in-game advantages. Some features are configured in the options page (there is a gear button in the pop-up, or right click the icon).

Saved Outfits
▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔
Save your favourite outfits (max. 8) and wear any of them in the game menu just by one click. 
Works in both normal and test servers of Dredark. The saved outfits won't be lost when the browser is closed.

Auto Setter
▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔
With this feature you can quickly set properties of in-game blocks to pre-defined values.

The feature is toggleable and works with a hotkey. If it is enabled, while pressing the hotkey and clicking a block in game will change its properties as defined in the pop-up menu. Signs also support auto setting while placing them.

The auto setting can't work so fast, you shouldn't try to click fast, holding down left-click also works. You can't smoothly move while setting blocks.

Chat Features
▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔
- Able to make URLs in the game chat clickable.
  - Able to allow interacting with the clickable URLs without opening the chat.
- Chat Highlighter:
  - Highlight defined texts in the chat (supports user and system messages, mostly for name mentioning)
  - Able to play a sound when a text was mentioned in the chat.

MOTD Features
▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔
- Able to make URLs in the game MOTD clickable.                    

Grundläggande Information om Tillägg

Namn Simple Dredark Tools (drednot.io) Simple Dredark Tools (drednot.io)
ID odpbhlhojogaobiipbaajhoiddlffjgh
Officiell webbadress https://chromewebstore.google.com/detail/simple-dredark-tools-dred/odpbhlhojogaobiipbaajhoiddlffjgh
Beskrivning An extension for some tools in the Deep Space Airships (drednot.io) game.
Filstorlek 93.71 KB
Antal Installationer 637
Aktuell Version 1.7.2
Senast Uppdaterad 2023-07-30
Publiceringsdatum 2020-06-15
Betyg 4.74/5 Totalt 23 Betyg
Utvecklare Blueyescat
E-post [email protected]
Betalningssätt free
Stödda Språk en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Simple Dredark Tools (drednot.io)",
    "description": "An extension for some tools in the Deep Space Airships (drednot.io) game.",
    "version": "1.7.2",
    "author": "Blueyescat ",
    "permissions": [
        "storage"
    ],
    "options_page": "options.html",
    "web_accessible_resources": [
        {
            "matches": [
                "*:\/\/*.drednot.io\/*"
            ],
            "resources": [
                "styles\/content.css",
                "sfx\/beep.mp3",
                "scripts\/wshook.js"
            ]
        }
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.drednot.io\/*"
            ],
            "js": [
                "lib\/jquery\/jquery-3.6.0.min.js",
                "lib\/msgpackjs\/msgpack.min.js",
                "scripts\/content.js"
            ],
            "css": [
                "styles\/content.css"
            ],
            "all_frames": true
        },
        {
            "matches": [
                "*:\/\/*.drednot.io\/*"
            ],
            "js": [
                "scripts\/document_start.js"
            ],
            "run_at": "document_start",
            "all_frames": true
        }
    ],
    "background": {
        "service_worker": "background.js"
    },
    "action": {
        "default_icon": {
            "32": "images\/dredark-icon.png"
        },
        "default_title": "Click to open options pop-up of Simple Dredark Tools",
        "default_popup": "popup.html"
    },
    "icons": {
        "16": "images\/dredark-icon.png",
        "32": "images\/dredark-icon.png",
        "48": "images\/dredark-icon.png",
        "128": "images\/dredark-icon.png"
    },
    "manifest_version": 3
}