欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

浏览器系列--油猴脚本实例

程序员文章站 2022-07-03 09:34:20
...

输出hello world

其他网址

编写你的第一个油猴脚本_XavierJ的博客-CSDN博客

代码

// ==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博客

解除CSDN目录长度限制

相关标签: 电脑技巧