Skip to content

Instantly share code, notes, and snippets.

@ngseke
ngseke / liberate-87pu.user.js
Created June 20, 2023 05:42
Liberate 87pu
// ==UserScript==
// @name Liberate 87pu
// @namespace http://tampermonkey.net/
// @version 0.1
// @author You
// @match https://www.87pu.com.tw/*
// @grant none
// ==/UserScript==
(function () {
@ngseke
ngseke / linkedin-x-glassdoor.user.js
Last active July 10, 2023 13:41
LinkedIn X Glassdoor
// ==UserScript==
// @name LinkedIn X Glassdoor
// @namespace http://tampermonkey.net/
// @version 0.1
// @description Shortcut from LinkedIn to Glassdoor
// @author ngseke
// @match https://www.linkedin.com/jobs/*
// @icon https://www.google.com/s2/favicons?sz=64&domain=linkedin.com
// @grant none
// ==/UserScript==
@ngseke
ngseke / versatile-npm-copy.user.js
Last active October 11, 2023 09:21
Versatile Npm Copy
// ==UserScript==
// @name Versatile Npm Copy
// @namespace https://ngseke.me/
// @version 0.1
// @description Easily copy various NPM installation commands with a single click. Supports NPM, Yarn, and pnpm.
// @author ngseke
// @match https://www.npmjs.com/package/*
// @icon https://www.google.com/s2/favicons?sz=64&domain=npmjs.com
// @grant none
// ==/UserScript==
@ngseke
ngseke / vite-import-meta-glob.ts
Created October 28, 2023 09:39
Vite `import.meta.glob`
const modules = import.meta.glob('./components/*/index.ts')
for (const module of Object.values(modules)) {
console.log(module)
}
@ngseke
ngseke / hijack.user.js
Last active November 7, 2023 12:33
Hijack Function
// ==UserScript==
// @name Hijack Function
// @namespace https://ngseke.me/
// @version 0.1
// @description Hijack Function
// @author You
// @match https://*
// @grant none
// ==/UserScript==