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 Inoreader - Highlights row light blue when mouse over in Article Pane | |
// @namespace https://openuserjs.org/scripts/jg5050/Inoreader_-_Highlights_row_light_blue_when_mouse_over_in_Article_Pane | |
// @description Change background to light blue when hovering with the mouse over headers in the article pane | |
// @downloadURL https://github.com/jimmygoings50/Userscripts/blob/master/Inoreader_-_Highlights_Row_Light_Blue_on_Mouseover.user.js | |
// @updateURL https://github.com/jimmygoings50/Userscripts/blob/master/Inoreader_-_Highlights_Row_Light_Blue_on_Mouseover.user.js | |
// @author jg5050 | |
// @version 1.0 | |
// @domain www.inoreader.com | |
// @domain inoreader.com |
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 VK Admin | |
// @grant none | |
// @require https://ajax.googleapis.com/ajax/libs/jquery/1.3/jquery.min.js | |
// @include https://new.vk.com/* | |
// ==/UserScript== | |
// | |
jQuery(function($){ |
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 google cache comeback | |
// @namespace trespassersW | |
// @description Brings back links to cached pages in the Google search results | |
// @include http://www.google.* | |
// @include https://www.google.* | |
// @include http://webcache.googleusercontent.* | |
// @include https://webcache.googleusercontent.* | |
// /homepageURL http://userscripts.org/scripts/show/156216 | |
// /updateURL https://userscripts.org/scripts/source/156216.meta.js |
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 FlyVK | |
// @description new.vk.com | |
// @include *://vk.com/* | |
// @include *://*.vk.com/* | |
// @include *://*.vk.me/* | |
// @include *://*.vk.cc/* | |
// @include *://*.userapi.com/* | |
// @version 1.6 | |
// @grant GM_setValue |
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 FlyVK | |
// @description new.vk.com | |
// @include *://vk.com/* | |
// @include *://*.vk.com/* | |
// @include *://*.vk.me/* | |
// @include *://*.vk.cc/* | |
// @include *://*.userapi.com/* | |
// @version 1.6 | |
// @grant GM_setValue |
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
Function Select-TableBlob { | |
param( | |
[string]$connectionString="Initial Catalog=Anaqua;Data Source=HFX.anaqua.local;Trusted_Connection=True;", | |
[string]$sqlQuery="SELECT OriginalFile, ThumbNailBlob, ThumbNailBlob FROM FileInformation WHERE ((ThumbNailBlob IS NOT NULL) and (substring(convert(varchar(max),convert(varbinary(max),ThumbNailBlob)), 0, 3) like 'BM'))", | |
[string]$tableName, | |
[string]$blobColumn, | |
[string]$destination=(Get-Location | Split-Path), | |
[int]$blobLimit=10 | |
) | |
[System.Data.SqlClient.SQLConnection]$connection = New-Object System.Data.SqlClient.SQLConnection |
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 copy 500px images | |
// @namespace http://www.oldcai.com/ | |
// @version 0.1 | |
// @description copy 500px images | |
// @author You | |
// @match https://500px.com/photo/* | |
// @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
// ==UserScript== | |
// @match http://500px.com/photo/* | |
// ==/Userscript== | |
'use strict'; | |
(function(){ | |
var imgPlaceHolder = document.querySelector('.nude_placeholder'); | |
var imgUrl = imgPlaceHolder.nextSibling.src; |
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 500px graber | |
// @namespace http://500px.com/ | |
// @description grab photo exif info | |
// @include http://500px.com/* | |
// @copyright 2012+, You | |
// ==/UserScript== | |
// a function that loads jQuery and calls a callback function when jQuery has finished loading | |
function addJQuery(callback) { |
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
<# | |
.NOTES | |
------------------------------------- | |
Name: Export-MediaFileDetails.ps1 | |
Version: 3.0a - 01/15/2017 | |
Author: Randy E. Turner | |
Email: [email protected] | |
------------------------------------- | |
.SYNOPSIS |