NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript== // @name Sony Liv Hack // @namespace http://tampermonkey.net/ // @version 0.2 // @description try to take over the world! // @author Sangam // @match https://www.sonyliv.com/* // @grant none // @license MIT // ==/UserScript== (function () { 'use strict'; let count = 0; setTimeout(() => localStorage.getItem = function () { console.log("called count::", ++count); return 1; }, 10000); // Your code here... })();