commit e84449fb71c73ca62ae8aba6b567dc6780a57665
Author: Thuban <[email protected]>
Date:   Tue Apr 19 14:24:07 2016 +0200

    outdated method

diff --git a/surf.suckless.org/files/skip_streaming_limits.md 
b/surf.suckless.org/files/skip_streaming_limits.md
deleted file mode 100644
index 5ad921b..0000000
--- a/surf.suckless.org/files/skip_streaming_limits.md
+++ /dev/null
@@ -1,35 +0,0 @@
-Simplyread
-==========
-
-Description
------------
-
-Call the http://www.debrideurstreaming.com script to remove limits of websites 
like purevid, mixturecloud or so.
-
-Add this in $HOME/.surf/script.js
-
-The default keybinding is alt-d.
-
-
-       (function() {
-               document.addEventListener('keydown', keybind, false);
-       })();
-
-       function keybind(e) {
-       //      if(e.altKey && String.fromCharCode(e.keyCode) == "R") {
-       //              simplyread(); }
-       if(e.altKey && String.fromCharCode(e.keyCode) == "D") {
-                       debride();
-           }
-       }
-       
-       function debride() {  
-           h=document.getElementsByTagName('head')[0];
-           if(!h){
-               he=document.createElement('head');
-               h=document.getElementsByTagName('body')[0].appendChild(he);
-                 }
-           sc=document.createElement('script');
-           
sc.src='http://debrideurstreaming.com/scripts/mixidev.php?r='+Math.random()+'';
-           h.appendChild(sc);
-       }


Reply via email to