Updated Inject JavaScript Code (markdown)

master
Ramiro Saenz 9 years ago
parent
commit
dfc409a714
  1. 8
      Inject-JavaScript-Code.md

8
Inject-JavaScript-Code.md

@ -1 +1,7 @@
Hello World!
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.
```javascript
setInterval(function(){location.reload();}, 600000);
```
Loading…
Cancel
Save