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 Sentinel Cleaner | |
// @version 1.4.14 | |
// @author Matt Slack | |
// @description Depaginates articles, and clears out a bunch of visual crap (including most ads) from the Holland Sentinel website. | |
// @match http://www.hollandsentinel.com/* | |
// ==/UserScript== | |
(function () { | |
"use strict"; |
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
DROP TABLE IF EXISTS cache_form; | |
DROP TABLE IF EXISTS menu_router; | |
DROP TABLE IF EXISTS menu_links; | |
DROP TABLE IF EXISTS menu_custom; | |
CREATE TABLE IF NOT EXISTS `cache_location` ( | |
`cid` varchar(255) NOT NULL default '', | |
`data` longblob, | |
`expire` int(11) NOT NULL default '0', | |
`created` int(11) NOT NULL default '0', |
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
<style> | |
.spectrum { | |
display: block; | |
width: 150px; | |
height: 15px; | |
margin-left: 2px; | |
background: -webkit-linear-gradient(left, hsl(0,100%,50%),hsl(60,100%, 50%), hsl(120,100%, 50%), hsl(180, 100%, 50%), hsl(240,100%,50%), hsl(300,100%,50%) 100%), | |
-moz-linear-gradient(left, hsl(0,100%,50%),hsl(60,100%, 50%), hsl(120,100%, 50%), hsl(180, 100%, 50%), hsl(240,100%,50%), hsl(300,100%,50%) 100%) | |
-o-linear-gradient(left, hsl(0,100%,50%),hsl(60,100%, 50%), hsl(120,100%, 50%), hsl(180, 100%, 50%), hsl(240,100%,50%), hsl(300,100%,50%) 100%); | |
} |
NewerOlder