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

输出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目录长度限制

猜你喜欢

转载自blog.csdn.net/feiying0canglang/article/details/114238648
今日推荐