一键连接校园网络(论文下载神器)
大学生经常会遇到需要在知网上查找下载论文的场景(比如各种作业,比赛的文章),学校为大家开辟了校园VPN通道,可以在不连接校园网的情况下下载论文。但连接校园VPN的过程比较繁琐,所以我们开发一款浏览器插件和油猴脚本简化了这个流程
其实原理并不复杂,这里先展示效果
油猴脚本版本
接入前
接入后
浏览器拓展版本
油猴脚本的源代码
// ==UserScript==
// @name 长安大学VPN一键接入
// @namespace http://tampermonkey.net/
// @include *
// @version 0.1
// @description try to take over the world!
// @author You
// @match *
// @grant none
// ==/UserScript==
(function() {
'use strict';
var body = document.getElementsByTagName("body")[0];
var first = document.body.firstChild;
var button = document.createElement("button");
button.textContent = "接入校园VPN";
button.style.width = "180px";
button.style.height = "28px";
button.style.align = "center";
button.style.color = "white";
button.style.background = "#e33e33";
button.style.border = "1px solid #e33e33";
button.style.borderRadius = "4px";
body.insertBefore(button,first);
function ss(){
button