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 Reddit highlight new comments | |
// @namespace https://github.com/Farow/userscripts | |
// @description Highlights new comments since your last visit | |
// @include /https?:\/\/[a-z]+\.reddit\.com\/r\/[\w:+-]+\/comments\/[\da-z]/ | |
// @version 3.0.1 | |
// @require https://raw.githubusercontent.com/bgrins/TinyColor/master/tinycolor.js | |
// @grant GM_getValue | |
// @grant GM_setValue | |
// @grant GM_addStyle |
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 MyDealz Ignore Helper | |
// @namespace 1110101 | |
// @version 4.3 | |
// @description Ignore articles by keyword or manually, track read articles with visual markers | |
// @author 1110101 | |
// @match https://www.mydealz.de/* | |
// @icon https://www.google.com/s2/favicons?sz=64&domain=mydealz.de | |
// @grant GM_addStyle | |
// @grant GM_getValue |
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 JOYN remove gradient background | |
// @description Entfernt diesen absolut nervigen Hintergrund | |
// @version 0.1 | |
// @author 1110101 | |
// @match https://*.joyn.de/live-tv* | |
// @match http://*.joyn.de/live-tv* | |
// @match https://joyn.de/live-tv* | |
// @match http://joyn.de/live-tv* | |
// @grant GM_addStyle |
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
export default function () { 'use strict'; | |
var globals = function(defs) { | |
defs('EPSG:4326', "+title=WGS 84 (long/lat) +proj=longlat +ellps=WGS84 +datum=WGS84 +units=degrees"); | |
defs('EPSG:4269', "+title=NAD83 (long/lat) +proj=longlat +a=6378137.0 +b=6356752.31414036 +ellps=GRS80 +datum=NAD83 +units=degrees"); | |
defs('EPSG:3857', "+title=WGS 84 / Pseudo-Mercator +proj=merc +a=6378137 +b=6378137 +lat_ts=0.0 +lon_0=0.0 +x_0=0.0 +y_0=0 +k=1.0 +units=m +nadgrids=@null +no_defs"); | |
defs.WGS84 = defs['EPSG:4326']; | |
defs['EPSG:3785'] = defs['EPSG:3857']; // maintain backward compat, official code is 3857 | |
defs.GOOGLE = defs['EPSG:3857']; |