Tampermonkey脚本属性
Posted where1-1
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Tampermonkey脚本属性相关的知识,希望对你有一定的参考价值。
新建脚本属性:
// ==UserScript== // @name New Userscript 脚本名 // @namespace http://tampermonkey.net/ 脚本主页 // @version 0.1 版本 // @description try to take over the world! 介绍 // @author You 作者 // @match https://www.baidu.com/ 匹配到什么页面执行此脚本 // @grant none 需求权限 // ==/UserScript== (function() { ‘use strict‘; // Your code here... })();
拓展:
//@license 代码许可;
// @include 和 @match 类似,表示匹配的网站
// @require 表示要使用的 js 库
// @homepageURL https://* 主页
// @supportURL https://* 问题报告页面
// @downloadURL https://* 下载地址
// @updateURL https://* 自动更新地址
除此之外还有很多,具体可参考官方文档。
以上是关于Tampermonkey脚本属性的主要内容,如果未能解决你的问题,请参考以下文章
tampermonkey利用@require调用本地脚本的方法
试图将 jquery 加载到 Tampermonkey 脚本中
安装在tampermonkey里的脚本和stylish里的脚本怎么备份的?