Hi, I am Medivh, and if you are like me you like to sometimes use the console to edit variables, and would like to do so on mobile too.
Up until somewhat recently this was capable with the Kiwi browser, it is no longer being supported.
I now recommend using Firefox (it is quite good as a main browser) and while you are here go into extensions and install Ublock Origin, installing violent monkey too is important for the next step, copy this code:
open the violent monkey extension (if you are on a new tab on firefox you need to click extensions>violent monkey>settings and then click the installed scripts tab), select the plus symbol in it and click New, now delete everything in that page and paste what you copied earlier, make sure the script is enabled and now it should work in cogdemos. If you want the console instead/too after installing violent monkey you can use this code I modified to only work in cogdemos.ink and choiceofgames:
Thank you @Barkus for providing the original script to modify stats, all I did was port it.
Edit: Now both codes should work exclusively in CoG and cogdemos.ink
Up until somewhat recently this was capable with the Kiwi browser, it is no longer being supported.
I now recommend using Firefox (it is quite good as a main browser) and while you are here go into extensions and install Ublock Origin, installing violent monkey too is important for the next step, copy this code:
// ==UserScript==
// @name Modding CoG
// @namespace Medivh's Scripts
// @match https://cogdemos.ink/play/*
// @match https://www.choiceofgames.com/*
// @grant none
// @version 1.0
// @author Medivh
// @description 23/08/2025, 09:14:48
// ==/UserScript==
(function(){
'use strict';
var scriptCheats = document.createElement('script');
scriptCheats.src = 'https://choicescripts.blob.core.windows.net/scripts/CheatMaster.js'
document.body.appendChild(scriptCheats);
})();
open the violent monkey extension (if you are on a new tab on firefox you need to click extensions>violent monkey>settings and then click the installed scripts tab), select the plus symbol in it and click New, now delete everything in that page and paste what you copied earlier, make sure the script is enabled and now it should work in cogdemos. If you want the console instead/too after installing violent monkey you can use this code I modified to only work in cogdemos.ink and choiceofgames:
// ==UserScript==
// @name Console for mobile browsers - eruda
// @namespace Medivh's Scripts
// @version 1.0
// @description try to take over the world!
// @author You
// @match https://cogdemos.ink/play/*
// @match https://www.choiceofgames.com/*
// @grant none
// ==/UserScript==
(function() {
'use strict';
var script = document.createElement('script');
script.src="//cdn.jsdelivr.net/npm/eruda";
document.body.appendChild(script);
script.onload = function () {
eruda.init();
}
})();
and press install, make sure it is enabled and everything shall go according to keikaku.Thank you @Barkus for providing the original script to modify stats, all I did was port it.
Edit: Now both codes should work exclusively in CoG and cogdemos.ink
Last edited: