[wiki] [sites] outdated method || Thuban

From: <git_AT_suckless.org>
Date: Tue, 19 Apr 2016 14:24:24 +0200

commit e84449fb71c73ca62ae8aba6b567dc6780a57665
Author: Thuban <thuban_AT_yeuxdelibad.net>
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
_AT_@ -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);
- }
Received on Tue Apr 19 2016 - 14:24:24 CEST

This archive was generated by hypermail 2.3.0 : Tue Apr 19 2016 - 14:36:14 CEST