浏览器插件的开发

1.1 学习资料

如何开发一个油猴(TamperMonkey)脚本
https://www.jianshu.com/p/cf3f8d20bbfc
JavaScript编写浏览器脚本
https://blog.csdn.net/lys1695227550/article/details/78076780
Chrome浏览器扩展开发系列之一:初识Google Chrome扩展
https://www.cnblogs.com/champagne/p/4776322.html
学习 Web 开发
https://developer.mozilla.org/zh-CN/docs/Learn
油猴脚本搜索
https://greasyfork.org/zh-CN/scripts/by-site/greasyfork.org
百度云脚本
https://greasyfork.org/zh-CN/scripts/39854-ex-百度云盘去加载提示版
安装百度云脚本
https://cloud.tencent.com/developer/news/227946

1.2 hello js

安装油猴或者暴力猴
点击图标,打开控制台,点击+新建,在可以匹配match的网站打开时,弹出消息。

// ==UserScript==
// @name helloScript
// @version 0.1
// @namespace Violentmonkey Scripts
// @match *://*/*
// @grant none
// ==/UserScript==
(function(){
  'use strict';
  //alert('hello js');
})();

你可能感兴趣的:(web)