test-require-resource

test-require-resource script.

// ==UserScript==
// @name         test-require-resource
// @namespace    http://tampermonkey.net/
// @version      2025-08-13
// @description  test-require-resource script.
// @author       glk
// @match        http://*/*
// @match        https://*/*
// @icon         data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==
// @require      https://cdn.jsdelivr.net/npm/[email protected]/dist/ziya-utils.js
// @grant        none
// @license      MIT
// @run-at       document-body
// ==/UserScript==

(function() {
    'use strict';
    console.log("a", ZiyaUtils)
    // Your code here...
})();