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 Close Vote Reminder | |
// @namespace https://gist.github.com/mogsdad/767f8adc04d1d5c732c9 | |
// @version 0.2 | |
// @description Display a notice at top of questions with their status wrt close votes. | |
// @author Mogsdad | |
// @include /^https?:\/\/\w*.?(stackoverflow|stackexchange|serverfault|superuser|askubuntu|stackapps)\.com\/(questions|posts|review)\/\d+\/.*/ | |
// @grant none | |
// ==/UserScript== | |
/* jshint -W097 */ |
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
/** | |
* Get the string representing the given PositionedLayout enum. | |
* Ref: https://developers.google.com/apps-script/reference/document/positioned-layout | |
* | |
* From: gist.github.com/mogsdad/7fed0b18837b9027f968 | |
* See: stackoverflow.com/a/20661113/1677912 | |
* | |
* @param {PositionedLayout} PositionedLayout Enum value. | |
* | |
* @returns {String} English text matching enum. |
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
/** | |
* Get a list of all PositionedImages in a document. | |
* From: gist.github.com/mogsdad/600bbb24ecb360da7d8c | |
* See: stackoverflow.com/a/20661113/1677912 | |
* | |
* @param {String} docId (optional) ID of document to scan | |
* | |
* @returns {PositionedImage[]} Array of PositionedImages in document | |
*/ | |
function getAllPositionedImages( docId ) { |
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
/** | |
* Demo of PositionedImages. | |
* From: gist.github.com/mogsdad/e65826da9974650e2abc | |
* See: stackoverflow.com/a/20661113/1677912 | |
**/ | |
function DemoPositionedImage() { | |
// Get handle on active document | |
var doc = DocumentApp.getActiveDocument(); | |
// Find desired image file |
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 Stack Overflow Real Dark | |
// @namespace http://github.com/TinyGiant/ | |
// @description Real dark styling for Stack Overflow and some Stack Exchange sites | |
// @author @TinyGiant | |
// @run-at document-start | |
// @version 1.0.1.1m | |
// @include /^https?:\/\/.*\.?stack(overflow|exchange).com/.*$/ | |
// ==/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 FindMyLastChatMsg | |
// @author Mogsdad | |
// @contributor Siguza | |
// @namespace chat.stackoverflow | |
// @description Find user's last posted message in a StackExchange chat room | |
// @include /^https?://chat.(stackoverflow|stackexchange|serverfault|superuser|askubuntu|stackapps)\.com/rooms/.*/ | |
// @version 1.0.0.0 | |
// @grant none | |
// ==/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 Load review | |
// @namespace https://gist.github.com/mogsdad/50c5a3e9686cf0a8867f | |
// @version 1.2 | |
// @description When on a Stack Exchange network review tab, periodically checks whether there is a review available. | |
// @author David Bingham (Mogsdad) | |
// @include /^https?://(meta\.)?(stackoverflow|stackexchange|serverfault|superuser|askubuntu|stackapps)\.com/review/*/ | |
// @grant none | |
// ==/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 zapHelpAndImrovement | |
// @namespace zapHelpAndImrovement | |
// @description Suppress the Help and Improvement review queue | |
// @include http://stackoverflow.com/review | |
// @version 1 | |
// @grant none | |
// ==/UserScript== | |
$('div').has('a[href="/review/helper"]').closest('.dashboard-item').remove(); |
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 Roomba-VTZ (Vote-to-zero) | |
// @namespace https://gist.github.com/mogsdad/ed30af363a376ec4a1c2 | |
// @version 1.2 | |
// @description Presents a set of buttons to quickly down-vote questions & answers for automatic deletion. (AKA Roomba candidates) | |
// @author David Bingham (Mogsdad) | |
// @include /^https?://(meta\.)?(stackoverflow|stackexchange|serverfault|superuser|askubuntu|stackapps)\.com/questions/[0-9]+.*/ | |
// @grant none | |
// ==/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 Tag list | |
// @namespace https://stackapps.com/questions/4207/burninator-toolkit | |
// @author Will Sullivan (Will) | |
// @developer David Bingham (Mogsdad) | |
// @version 1.2.10 | |
// @grant none | |
// @description Adds an expandable list containing a link to every question on the current tag page. Useful when you want to open many questions with the same tag at the same time. | |
// @include /^https?:\/\/(?:meta.)?(?:stackoverflow|stackexchange|serverfault|superuser|askubuntu|stackapps)\.com(?:\/(?:\?|questions(?:$|\/tagged|\?)|search|unanswered).*)?$/ | |
// https://regex101.com/r/1D5jof/3 |