// ==UserScript== // @name Trakt Local Storage Refresh // @description To clickly clear the local storage and refresh the page. Useful when the page data is wrong or outdated. // @namespace https://ksir.pw // @match https://trakt.tv/* // @grant none // @version 1.0.2 // @homepageURL https://github.com/DrKain/userscripts // @author Kain (ksir.pw) // @description 11/15/2022, 6:29:52 PM // @downloadURL none // ==/UserScript== var btn = document.createElement('button'); btn.id = 'ls-r'; btn.setAttribute('title', 'Reset LocalStorage'); btn.innerHTML = '↻'; btn.onclick = () => { localStorage.clear(); window.location.reload() }; document.body.innerHTML += ""; document.body.appendChild(btn);