JKCS/extheader.js

20 lines
612 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 Joshi Koukousei Captcha Service
2022-08-03 02:20:38 +00:00
// @namespace /cumg/
// @match https://boards.4channel.org/*
// @match https://boards.4chan.org/*
// @match https://sys.4chan.org/*
2022-08-03 02:20:38 +00:00
// @grant none
// @version 1.1
// @author /cumg/, formerly AUTOMATIC
// @description The Janny Skillers Captcha Solver of choice
// ==/UserScript==
const _DOMParser = DOMParser;
`