This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==UserScript== | |
// @name Hypnotube UI clutter-reduction | |
// @namespace http://tampermonkey.net/ | |
// @version 0.1 | |
// @description hide photosets from suggested videos | |
// @author boundmaidlea | |
// @match https://hypnotube.com/video/* | |
// @icon data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw== | |
// @grant none | |
// ==/UserScript== |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta name="darkreader-lock"> <!--disable dark reader addon for this page (does not properly work)--> | |
<style> | |
body, html { | |
background-color: #2c2c2c; | |
color: #a8a8a8; | |
margin: 0; | |
overflow: clip; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//This is a file meant to be executed clientside in node.js. Made by schockocraft & boundmaidlea. | |
const fs = require("fs"); | |
const options = {}; | |
options.withFileTypes = true; | |
function inspectFile (fileName) { | |
console.log("reading file signature...") | |
//reading File signature (first 12 Bytes of the file) | |
var signature = Buffer.alloc(12); | |
var ending |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==UserScript== | |
// @name Download Button for Vive Hypnosis | |
// @namespace http://tampermonkey.net/ | |
// @version 0.1 | |
// @description adds a download button in the vido player for free hypno files on vive-hypnosis.com | |
// @author boundmaidlea | |
// @match https://vive-hypnosis.com/* | |
// @icon data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw== | |
// @grant none | |
// ==/UserScript== |