浏览器系列--油猴脚本实例
程序员文章站
2022-07-03 09:34:20
...
输出hello world
其他网址
代码
// ==UserScript== // @name hello world // @namespace http://tampermonkey.net/ // @version 0.1 // @description try to take over the world! // @author You // @match *://*/* // @include * // @run-at document-end // ==/UserScript== (function() { 'use strict'; alert('hello world'); })();
给CSDN添加按钮
其他网址
如何开发一个油猴脚本- 从零开始编写一个油猴脚本_kesyuepng的博客-CSDN博客
油猴脚本编写规则_Senreme-CSDN博客