Simple Dreddark API is a client-side developer API for drednot.io, delivered as a Tampermonkey userscript. It exposes structured access to chat parsing, events, commands, ship helpers, storage, outfit control, and utilities.
Install as a Tampermonkey userscript:
- Script name:
Simple Dreddark API v2 - Matches:
https://drednot.io/*https://test.drednot.io/*Once installed, the API is exposed globally.
If you are developing or testing locally, you can load the API directly from GitHub using DevTools.
Paste this into the browser console:
fetch("https://raw.githubusercontent.com/PshsayhiXD/Simple-Dreddark-API/master/stable.min.js")
.then(r => r.text())
.then(code => {
const s = document.createElement("script");
s.textContent = code;
document.documentElement.appendChild(s);
});For convenience, save the above as a DevTools Snippet and run it after each refresh.
window.DreddarkDreddark.version // "2.1.7"Soon.