JKCS/extheader.js

19 lines
571 B
JavaScript
Raw Normal View History

2022-08-03 02:20:38 +00:00
import { spawnSync } from 'child_process'
const res = spawnSync('git', ['rev-list', '--count', 'HEAD'])
// eslint-disable-next-line no-unused-vars
const rev = +res.stdout
export const extheader = `// ==UserScript==
// @name Janny Skiller's Captcha Solver
// @namespace /cumg/
// @match https://boards.4channel.org/*
// @match https://boards.4chan.org/*
// @grant none
// @version 1.1
// @author /cumg/, formerly AUTOMATIC
// @description The Janny Skillers Captcha Solver of choice
// ==/UserScript==
const _DOMParser = DOMParser;
`