This file contains 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 GoG Mafia Search | |
// @namespace https://gist.github.com/adaliabooks/ | |
// @version 0.1 | |
// @description Adds Basic user search / filter bar to GoG.com forums for use in Mafia Games | |
// @author adaliabooks | |
// @match https://gist.github.com/adaliabooks/c72b36bc3d85aa5764a3 | |
// @grant none | |
// @include http://www.gog.com/forum/* | |
// ==/UserScript== |
This file contains 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 GoG Search | |
// @namespace https://gist.github.com/adaliabooks/ | |
// @version 1.0 | |
// @description Adds Basic user search / filter bar to GoG.com forums | |
// @author adaliabooks | |
// @updateURL https://gist.github.com/adaliabooks/51d25e123f36f4308bb2/raw/ | |
// @downloadURL https://gist.github.com/adaliabooks/51d25e123f36f4308bb2/raw/ | |
// @require https://raw.githubusercontent.com/bartaz/sandbox.js/master/jquery.highlight.js | |
// @grant none |
This file contains 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 Downloader Links on Main Library Page | |
// @namespace https://gist.github.com/adaliabooks/ | |
// @version 0.2 | |
// @description Restores the GoG Downloader links to the main game page on the library | |
// @include https://www.gog.com/account* | |
// @include http://www.gog.com/account* | |
// @require https://ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js | |
// @require https://meetselva.github.io/attrchange/javascripts/attrchange.js | |
// @author adaliabooks |
This file contains 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 GoG Reviews Filter | |
// @namespace https://gist.github.com/adaliabooks/ | |
// @version 1.2 | |
// @description Adds the ability to sort reviews on GoG by a number of criteria | |
// @author adaliabooks | |
// @updateURL https://gist.github.com/adaliabooks/3dd8624a2dd72a7209fe/raw/ | |
// @downloadURL https://gist.github.com/adaliabooks/3dd8624a2dd72a7209fe/raw/ | |
// @require https://ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js | |
// @grant none |
This file contains 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 Adalia Fundamentals | |
// @namespace https://gist.github.com/adaliabooks/ | |
// @version 1.9.9 | |
// @description A package of fixes, new features and changes to improve GoG.com. I fix GoG, so you don't have to! | |
// @author adaliabooks | |
// @updateURL https://gist.github.com/adaliabooks/bf3cbdbb56db6c107dd8/raw/ | |
// @downloadURL https://gist.github.com/adaliabooks/bf3cbdbb56db6c107dd8/raw/ | |
// @include http://www.gog.com/* | |
// @include https://www.gog.com/* |
This file contains 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 contentEval(source) { | |
// Check for function input. | |
if ('function' == typeof source) { | |
// Execute this function with no arguments, by adding parentheses. | |
// One set around the function, required for valid syntax, and a | |
// second empty set calls the surrounded function. | |
source = '(' + source + ')();' | |
} | |
// Create a script node holding this source code. |
This file contains 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
var urlList = { | |
"1": { | |
"url": "/upload/images/2012/04/6079c0e917fa26380328db4ad8fb59f5c8d9e246.jpg" | |
}, | |
"2": { | |
"url": "/upload/images/2012/04/27564cd8537df580ffed8b69447bc1c480a33260.jpg" | |
}, | |
"3": { | |
"url": "/upload/images/2008/05/4d1399bfe000165fb7fc6a8f6ca6a36e0eaeff0f.jpg" | |
}, |
This file contains 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
var urlList = { | |
"1": { | |
"url": "\/upload\/images\/2012\/04\/6079c0e917fa26380328db4ad8fb59f5c8d9e246.jpg" | |
}, | |
"2": { | |
"url": "\/upload\/images\/2012\/04\/27564cd8537df580ffed8b69447bc1c480a33260.jpg" | |
}, | |
"3": { | |
"url": "\/upload\/images\/2008\/05\/4d1399bfe000165fb7fc6a8f6ca6a36e0eaeff0f.jpg" | |
}, |
This file contains 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 Account Bar Fix | |
// @namespace https://gist.github.com/adaliabooks/ | |
// @version 1.0 | |
// @description Fixes the account bar (this time) | |
// @author adaliabooks | |
// @updateURL https://gist.github.com/adaliabooks/40e153bd4f05e9aea22e0063e0b6417b/raw/ | |
// @downloadURL https://gist.github.com/adaliabooks/40e153bd4f05e9aea22e0063e0b6417b/raw/ | |
// @require https://ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js | |
// @grant unsafewindow |