hentaiverse-userland-api
Version:
23 lines (19 loc) • 616 B
JavaScript
// ==UserScript==
// @name HV User-Land API
// @namespace https://hentaiverse.org
// @run-at document-end
// @compatible Chrome/Chromium + Tampermonkey
// @compatible Firefox + Greasemonkey
// @version 0.0.1
// @author Sukka <https://skk.moe>
// @include http*://hentaiverse.org/*
// @include http://alt.hentaiverse.org/*
// @exclude http*://hentaiverse.org/pages/showequip.php?*
// @exclude http://alt.hentaiverse.org/pages/showequip.php?*
// @grant unsafeWindow
// ==/UserScript==
(function () {
'use strict';
const version = '0.0.1';
unsafeWindow.version = version;
}());