The captcha solver made by and for japanese high school girls!
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

19 lines
612 B

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
// @namespace /cumg/
// @match https://boards.4channel.org/*
// @match https://boards.4chan.org/*
// @match https://sys.4chan.org/*
// @grant none
// @version 1.1
// @author /cumg/, formerly AUTOMATIC
// @description The Janny Skillers Captcha Solver of choice
// ==/UserScript==
const _DOMParser = DOMParser;
`