Deaktiviert die hover link-previews auf pr0gramm.com
Es wird entweder die TamperMonkey Extension für Chrome oder die GreaseMonkey Extension für FireFox benötigt.
Zum installieren, hier klicken.
Von TheShad0w
Es wird entweder die TamperMonkey Extension für Chrome oder die GreaseMonkey Extension für FireFox benötigt.
Zum installieren, hier klicken.
Von TheShad0w
You just want to binge your show but Amazon interrupts your experience with those annoying promos between the episodes?
LOOK NO FURTHER
This script saves you some clicks and automatically skips those promos for you.
MIT License
Copyright (c) NullDev
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
.rating { | |
unicode-bidi: bidi-override; | |
color: #c5c5c5; | |
font-size: 25px; | |
height: 25px; | |
width: 100px; | |
margin: 0 auto; | |
position: relative; | |
padding: 0; | |
text-shadow: 0px 1px 0 #a2a2a2; |
JS:
/* -- Pagination -- */
var currPage = 1;
var numsPerPage = 6;
$(document).ready(function(){
$("div.content-single").hide();
$("div.content-single:lt(" + numsPerPage + ")").show();
"use strict"; | |
let path = require("path"); | |
let fs = require("fs"); | |
//////////////////////////////// | |
//----------------------------// | |
// Copyright (c) 2018 NullDev // | |
//----------------------------// | |
//////////////////////////////// |
This is a (temporary fix) for visual composer messing up heights of grid elements on iPads.
Basically, visualcomposer just parses the device width and height very sloppy.
this results in a height property like this:
element {
height: 314x301;
}
HTML:
<div id="t"></div>
JS:
var console={log:function(t){document.getElementById("t").innerHTML+=t+""}};