Skip to content

Instantly share code, notes, and snippets.

@Sitethief
Last active October 4, 2022 08:10
Show Gist options
  • Save Sitethief/21d1da1fccd470536e9bbd1860f684b4 to your computer and use it in GitHub Desktop.
Save Sitethief/21d1da1fccd470536e9bbd1860f684b4 to your computer and use it in GitHub Desktop.
NSAutoFlipPack
// ==UserScript==
// @name NSAutoFlipPack
// @namespace sitethiefs-ns-scripts
// @version 0.2
// @description AutoFlips packs
// @author Sitethief of Vylixan
// @copyright GPLv3 https://www.gnu.org/licenses/gpl-3.0.html
// @match *www.nationstates.net/page=deck
// @match *www.nationstates.net/*page=deck*
// @grant none
// ==/UserScript==
(function () {
'use strict';
document.querySelectorAll('.flipped')
.forEach(function (element) {
element.classList.remove('flipped');
});
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment