You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Simon Sassi edited this page Apr 23, 2019
·
4 revisions
From version 0.4.1 you can inject custom JavaScript code into websites. This is great when you want to add custom functionality to each specific service.
For example, some users want to make an Auto Refresh every X time because the service they are using, it's disconnect on inactivity. Here's an example to autorefresh every 10 minutes.
An other example is injecting custom CSS (user styles).
This can be done with following snippet:
(()=>{letcss=`/* START OF STYLE */* { color: red;}/* END OF STYLE */`;varss=document.createElement("style");ss.type="text/css";ss.innerHTML=css;document.getElementsByTagName("head")[0].appendChild(ss);})();