Last active
April 18, 2023 20:28
-
-
Save rynomad/2e29748a550a4d82701ddcbf6f909f7b to your computer and use it in GitHub Desktop.
ChatMonkey bundle installer
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 Open Jasmine Scripts in New Tabs | |
// @namespace http://tampermonkey.net/ | |
// @version 0.1 | |
// @description Open the Jasmine Runner and Jasmine Invoker scripts in new tabs | |
// @author You | |
// @match https://gist.github.com/rynomad/2e29748a550a4d82701ddcbf6f909f7b | |
// @grant GM_openInTab | |
// ==/UserScript== | |
(function() { | |
'use strict'; | |
const urls = [ | |
'https://gist.github.com/rynomad/b123f1698655bbc9c0c155c4485ba748/raw/d932a79b06486a33bbfe2e30cb59e646597272ce/gptjasminerunner.user.js', | |
'https://gist.github.com/rynomad/082a600270246947971110317020b9a6/raw/7b57983d663658a3620bd33b78fc90fa535b4ec6/gptjasmineinvoker.user.js', | |
'https://gist.github.com/rynomad/fcdd150aed64ebfec98c284c753241ad/raw/e152cdfe6266c26af4d0dcba39da525c09625557/gptcodemerge.user.js' | |
'https://gist.github.com/rynomad/0bdd930735b96e25c33e5a065a5e8bae/raw/39f4043fc7b208f127ea7df238b6a82c10dd0945/gpteval.user.js' | |
]; | |
urls.forEach(url => { | |
GM_openInTab(url, { active: true, insert: true }); | |
}); | |
})(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment