Google Chrome Dino-Game Hack (chrome://dino/)

Speed Hack, Jump Hack, Points Hack, Invincibility Hack, & More.

目前為 2022-03-04 提交的版本,檢視 最新版本

您需要先安裝使用者腳本管理器擴展,如 TampermonkeyGreasemonkeyViolentmonkey 之後才能安裝該腳本。

You will need to install an extension such as Tampermonkey to install this script.

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyUserscripts 後才能安裝該腳本。

你需要先安裝一款使用者腳本管理器擴展,比如 Tampermonkey,才能安裝此腳本

您需要先安裝使用者腳本管理器擴充功能後才能安裝該腳本。

(我已經安裝了使用者腳本管理器,讓我安裝!)

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

(我已經安裝了使用者樣式管理器,讓我安裝!)

// ==UserScript==
// @name         Google Chrome Dino-Game Hack (chrome://dino/)
// @namespace    http://tampermonkey.net/
// @version      3.1.6
// @description  Speed Hack, Jump Hack, Points Hack, Invincibility Hack, & More.
// @author       Cracko298
// @icon         https://www.omgchrome.com/wp-content/uploads/2015/06/chrome-trex-dinosaur.jpg
// @include      chrome://dino/
// @match        chrome://dino/
// @match        https://dino-chrome.com/
// @match        https://chrome-dino.com/
// @match        https://dinorunner.com/
// @match        https://chromedino.com/
// @license      MIT
// @grant        none
// ==/UserScript==

if (window.confirm("Want to Inject The Hack?")) 
{

var button = document.createElement("button");
button.innerHTML = "Set Max Score";

var body = document.getElementsByTagName("header")[0];
body.appendChild(button);

button.addEventListener ("click", function() {
  alert("Max Score Set.");
Runner.instance_.distanceRan = 99999 / Runner.instance_.distanceMeter.config.COEFFICIENT;

});
var button = document.createElement("button");
button.innerHTML = "Invincibility";

var body = document.getElementsByTagName("header")[0];
body.appendChild(button);

button.addEventListener ("click", function() {
  alert("Invincibility Set.");
var original = Runner.prototype.gameOver
Runner.prototype.gameOver = function(){}

});
var button = document.createElement("button");
button.innerHTML = "High Speed";

var body = document.getElementsByTagName("header")[0];
body.appendChild(button);

button.addEventListener ("click", function() {
  alert("High Speed Set.");
Runner.instance_.setSpeed(100)

});
var button = document.createElement("button");
button.innerHTML = "High Jump";

var body = document.getElementsByTagName("header")[0];
body.appendChild(button);

button.addEventListener ("click", function() {
  alert("High Jump Set.");
Runner.instance_.tRex.setJumpVelocity(50)

});
var button = document.createElement("button");
button.innerHTML = "Reset All Hacks";

var body = document.getElementsByTagName("header")[0];
body.appendChild(button);

button.addEventListener ("click", function() {
  alert("Reset All Hacks");
Runner.prototype.gameOver = original
Runner.instance_.tRex.setJumpVelocity(10)
Runner.instance_.setSpeed(7)
Runner.instance_.distanceRan = 0 / Runner.instance_.distanceMeter.config.COEFFICIENT;
Runner.prototype.gameOver = original
});

var button = document.createElement("button");
button.innerHTML = "Reset Invincibility";

var body = document.getElementsByTagName("header")[0];
body.appendChild(button);

button.addEventListener ("click", function() {
Runner.prototype.gameOver = original
});

}
else{
alert('The Hack Inject Was Cancelled');
Runner.prototype.gameOver = original

}