-
-
Save Sitethief/21d1da1fccd470536e9bbd1860f684b4 to your computer and use it in GitHub Desktop.
NSAutoFlipPack
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 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