Simple Dredark Tools (drednot.io)

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

¿Qué es Simple Dredark Tools (drednot.io)?

Simple Dredark Tools (drednot.io) es una extensión de Chrome desarrollada por Blueyescat, y su función principal es "An extension for some tools in the Deep Space Airships (drednot.io) game.".

Capturas de Pantalla de la Extensión

screenshot
screenshot
screenshot
screenshot
screenshot

Descargar Archivo CRX de la Extensión Simple Dredark Tools (drednot.io)

Descarga archivos de extensión Simple Dredark Tools (drednot.io) en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        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.                    

Información Básica de la Extensión

Nombre Simple Dredark Tools (drednot.io) Simple Dredark Tools (drednot.io)
ID odpbhlhojogaobiipbaajhoiddlffjgh
URL Oficial https://chromewebstore.google.com/detail/simple-dredark-tools-dred/odpbhlhojogaobiipbaajhoiddlffjgh
Descripción An extension for some tools in the Deep Space Airships (drednot.io) game.
Tamaño del Archivo 93.71 KB
Cantidad de Instalaciones 637
Versión Actual 1.7.2
Última Actualización 2023-07-30
Fecha de Publicación 2020-06-15
Calificación 4.74/5 Total de 23 Calificaciones
Desarrollador Blueyescat
Correo electrónico [email protected]
Tipo de Pago free
Idiomas Soportados 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
}