Skip to content

Instantly share code, notes, and snippets.

View ipisboomz's full-sized avatar

Ipis Boomz ipisboomz

View GitHub Profile
@ipisboomz
ipisboomz / ruler.js
Last active June 11, 2020 10:21
DDTANK Ruler JS
/*
* Read me How to use
* 1. open ddtank
* 2. right click on any part of the page not the game itself
* 3. click on inspect element menu
* 4. go to console ang copy-paste this code and press enter
* TIPS: You can adjust the number top: 500; value to suit your preference, the height of the game is 600
* Try this other one: https://gist.github.com/ipisboomz/518d97ba0d75392402b346d32bd0c503 not overlay but appears on the bottom
*/
document.getElementsByTagName("object")[0].parentElement.appendChild((()=>{
@ipisboomz
ipisboomz / ruler2.js
Last active August 17, 2021 02:22
DDTank Ruler 2
/*
* Read me How to use
* 1. open ddtank
* 2. right click on any part of the page not the game itself
* 3. click on inspect element menu
* 4. go to console ang copy-paste this code and press enter
* TIPS: This one is attached at the bottom, for overlay check https://gist.github.com/ipisboomz/3736ac7ace7f14148dffb4add5455e04
*/
document.getElementsByTagName("object")[0].parentElement.appendChild((()=>{
document.getElementsByTagName("object")[0].parentElement.style.position = 'relative';
@ipisboomz
ipisboomz / game321-ruler.js
Last active August 31, 2020 03:22
DDTank Ruler - From Game321
document.body.style.backgroundImage = "url(//s1-ddt.game321.com/images/bg/4.jpg)";
@ipisboomz
ipisboomz / BackgroundRuler.js
Last active August 31, 2020 03:20
DDTank New Era change Background Script
document.body.style.backgroundImage = 'url(//s1-ddt.7tgames.com/images/bg_all.jpg)';
@ipisboomz
ipisboomz / ddt-mini-ruler.js
Last active July 27, 2025 10:03
DDTank mini map ruler
var s = document.createElement("link");
s.rel = "stylesheet";
s.type = 'text/css';
s.href = "//code.jquery.com/ui/1.12.1/themes/base/jquery-ui.css";
$("head").append(s);
$.getScript('//code.jquery.com/ui/1.12.1/jquery-ui.js', () => {
var lines = [];