sites

public wiki contents of suckless.org
git clone git://git.suckless.org/sites
Log | Files | Refs

commit e84449fb71c73ca62ae8aba6b567dc6780a57665
parent 1d6359104c1d0e996f3c7564e2bde6f2255d94d5
Author: Thuban <thuban@yeuxdelibad.net>
Date:   Tue, 19 Apr 2016 14:24:07 +0200

outdated method

Diffstat:
Dsurf.suckless.org/files/skip_streaming_limits.md | 35-----------------------------------
1 file changed, 0 insertions(+), 35 deletions(-)

diff --git a/surf.suckless.org/files/skip_streaming_limits.md b/surf.suckless.org/files/skip_streaming_limits.md @@ -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); - }