tampermonkey 脚本模版

2024-12-10

// ==UserScript==
// @name         My Demo
// @namespace    https://devxmate.com/
// @version      2024-11-11
// @description  try to take over the world!
// @author       devxmate
// @match        *://*.devxmate.com/*
// @require      https://unpkg.com/jquery@3.7.1/dist/jquery.js
// @require      https://unpkg.com/sweetalert2@10.16.6/dist/sweetalert2.all.min.js
// @require      https://unpkg.com/jquery.cookie@1.4.1/jquery.cookie.js
// @require      https://unpkg.com/clipboard@2.0.1/dist/clipboard.min.js
// @icon         data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==
// @grant        none
// ==/UserScript==

(function() {
    'use strict';

    jQuery(function() {
       console.info("ready");
    })

    console.info("no ready");

    // Your code here...
})();