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 () { | |
// this is meant to be run as a snippet in chrome devTools | |
// if this is implemented in the actual game code it doesn't need this | |
// wrapper function | |
clear(); | |
// prompt the user for the exported json from the pWaymark plugin | |
const importStr = prompt('Paste the export from the pWaymark plugin. This will REPLACE all your current sim waymarks. Cancel or leave blank to stop'); | |
if (importStr === null || importStr === '') { | |
console.log('canceling import'); |
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 FFXIV Store better links | |
// @description Make FFXIV's store item cards actual links to help navigation | |
// @icon https://www.google.com/s2/favicons?domain=finalfantasyxiv.com | |
// | |
// @author jjspace | |
// @namespace https://github.com/jjspace | |
// @downloadURL https://gist.github.com/jjspace/0feb636d5c8ea6e0f8b65d95d0f240f6/raw/fix-ffxiv-store-links.user.js | |
// | |
// @version 0.3 |
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 Colorcode GH | |
// @description Colorize repository and user names to allow for easier identification and skiming. | |
// | |
// @author jjspace | |
// @namespace https://github.com/jjspace | |
// @downloadURL https://gist.github.com/jjspace/df4fc6eaa587f70e60985977205e0787/raw/colorcode-gh.user.js | |
// | |
// @version 0.4.16 | |
// @updateURL https://gist.github.com/jjspace/df4fc6eaa587f70e60985977205e0787/raw/colorcode-gh.user.js |
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 GDQ Schedule Progress | |
// @description Style the GDQ Schedule page to show which events have already passed | |
// | |
// @author jjspace | |
// @namespace https://github.com/jjspace | |
// @downloadURL https://gist.github.com/jjspace/1140c685307d157a9c83640e2a031a27/raw/gdq-schedule-progress.user.js | |
// | |
// @version 0.2.3 | |
// @updateURL https://gist.github.com/jjspace/1140c685307d157a9c83640e2a031a27/raw/gdq-schedule-progress.user.js |
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
/** | |
* Add a new stylesheet to this page with the provided rules | |
* Rules should be an array of the form: | |
* [['selector string', { *rules object* }]] | |
* where rules object is: | |
* { property: 'value', ...} | |
* property names are camelCase versions of css properties | |
* for example the prop 'background-color' would become 'backgroundColor' | |
* @param {Array} rules | |
* @example |
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
/** | |
* TODO: | |
* Implement updated sorting functionality. Sort by: | |
* - High risks (high to low) | |
* - No High Risks. Medium risks (high to low) | |
* - No High Risks. No Medium Risks. Low Risks (high to low) | |
**/ | |
// Expected sorting result: | |
// summaryBuckets.sort = [ |
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 DIM Quickfilters | |
// @description Add a quick filter dropdown for DIM | |
// | |
// @author jjspace | |
// @namespace http://github.com/jjspace | |
// @downloadURL https://gist.github.com/jjspace/b9dec89b1aa68ee9356270b6507bc27c/raw/dimQuickfilters.user.js | |
// | |
// @version 1.0.6 | |
// @updateUrl https://gist.github.com/jjspace/b9dec89b1aa68ee9356270b6507bc27c/raw/dimQuickfilters.user.js |