Skip to content

Instantly share code, notes, and snippets.

[ImageSearchOptions]
Google Search|1|1|data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAABWUlEQVQ4jaXTPUvDQBgH8HyzkiCVdlBcFD+CDgUn0bU5rUMRS6mD4BuCVgfFKmitCl0s+FKhvoEgVvsyWKuRS9JLcvm7tcplSHW44e6e5/c8x91JAaKFZJXWFELRzZBVWgsQLST9JfknInlt9ExRJLMMqSOG67ID7gLb5xbG100h1hNIFyzM51gbu61wnN7Znl14Al+GC7LTas9nMi20bPgHPnUXmatOxbE1E89v3D8wd8DAbGBiw0R/XMfupY3RJcM/oBCKkUUDiUMGF/h1HN+AQiiC0xSa4aL04mBgVvcPTKZNbBYspHIMy3mGJnXx+s4xmBARAVg4Ybh4ctAb66wNJXSUGxx7RfEqBaDa5EgdMSEwmWXIlnwA+Qcb5QbHcLLTbjBGcfboILLq4yX2xXVsFSzUP1zcVzmOb2zsF21EVsRkhVD89zPVJTmqhWWV1rsGVFqRo1r4G6iM33AbQTj+AAAAAElFTkSuQmCC;;;0|1|0|1;;;0;;;http://www.google.com/searchbyimage;;;image_url=::$URL::;;;?|&;;;0;;;http://www.google.com/searchbyimage/upload;;;encoded_image=::$IMGDATA::;;;?|&;;;1
SauceNAO Search|0|1|chrome://ImageSearchOptions/content/images/SauceNAO.png;;;0|1|1|1;;;1;;;http://saucenao.com/search.php;;;db=999|url=::$URL::;;;?|&;;;0;;;http://saucenao.com/search.php;;;db=999|file=::$IMGDATA::;;;?|&;;;1
IQDB Search|0|1|chrome://ImageSear
@rusnewman
rusnewman / gist:c3183d7bc03110d6b0e9
Last active August 29, 2015 14:11
Imagus sieve for Steam store screenshots
The existing Imagus sieve doesn't work with the new Steam store, as the image assets have been moved to another CDN, with a different URL structure. This attempts to fix it.
img:
^(cdn\.akamai\.steamstatic\.com\/steam\/apps\/[\d]+\/[\w\d]+).*
to:
$1.jpg
@lluchs
lluchs / imagus.json
Last active August 29, 2015 14:10
Imagus sieve definition for mwforum attachments
{
"mwforum": {
"link": "/attach_show.pl\\?aid=\\d+$",
"res": ":\nreturn new DOMParser().parseFromString($._, 'text/html').querySelector('.ims > img').src"
}
}
@wenketel
wenketel / Image Search Options.txt
Last active August 6, 2016 16:51
Image Search Options配置文件。添加了谷歌,bing,360,doujinshi,e绅士
[ImageSearchOptions]
Google Search|1|1|data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAABWUlEQVQ4jaXTPUvDQBgH8HyzkiCVdlBcFD+CDgUn0bU5rUMRS6mD4BuCVgfFKmitCl0s+FKhvoEgVvsyWKuRS9JLcvm7tcplSHW44e6e5/c8x91JAaKFZJXWFELRzZBVWgsQLST9JfknInlt9ExRJLMMqSOG67ID7gLb5xbG100h1hNIFyzM51gbu61wnN7Znl14Al+GC7LTas9nMi20bPgHPnUXmatOxbE1E89v3D8wd8DAbGBiw0R/XMfupY3RJcM/oBCKkUUDiUMGF/h1HN+AQiiC0xSa4aL04mBgVvcPTKZNbBYspHIMy3mGJnXx+s4xmBARAVg4Ybh4ctAb66wNJXSUGxx7RfEqBaDa5EgdMSEwmWXIlnwA+Qcb5QbHcLLTbjBGcfboILLq4yX2xXVsFSzUP1zcVzmOb2zsF21EVsRkhVD89zPVJTmqhWWV1rsGVFqRo1r4G6iM33AbQTj+AAAAAElFTkSuQmCC;;;0|1|0|1;;;0;;;http://www.google.com/searchbyimage;;;image_url=::$URL::;;;?|&;;;0;;;http://www.google.com/searchbyimage/upload;;;encoded_image=::$IMGDATA::;;;?|&;;;1
SauceNAO Search|0|1|chrome://ImageSearchOptions/content/images/SauceNAO.png;;;0|1|1|1;;;1;;;http://saucenao.com/search.php;;;db=999|url=::$URL::;;;?|&;;;0;;;http://saucenao.com/search.php;;;db=999|file=::$IMGDATA::;;;?|&;;;1
IQDB Search|0|1|chrome://ImageSear
@PinkPandaKatie
PinkPandaKatie / wikipedia_desktop_redirect.user.js
Created April 25, 2014 16:24
Greasemonkey script which redirects Wikipedia mobile to the desktop version
// ==UserScript==
// @name wikipedia_desktop_redirect
// @namespace https://jspenguin.org/monkey
// @description Redirect mobile wikipedia to desktop version
// @include http://*.m.wikipedia.org/*
// @include https://*.m.wikipedia.org/*
// @version 1
// @grant none
// ==/UserScript==
@rodneyrehm
rodneyrehm / anti-keygrabber.user.js
Last active July 5, 2022 01:31
GreaseMonkey: Prevent Web Applications From Grabbing Certain HotKeys
// ==UserScript==
// @name anti key-grabber
// @description Prevent web apps from capturing and muting vital keyboard shortcuts
// @grant none
// @version 1.1
// ==/UserScript==
(function(){
var isMac = unsafeWindow.navigator.oscpu.toLowerCase().contains("mac os x");
unsafeWindow.document.addEventListener('keydown', function(e) {
if (e.keyCode === 116) {