06 2021 档案
摘要:插件安装 &代表父标签 定义 变量 lighten() 全局函数 , 变亮 _开头的文件 , sass不会变成css 再 用 @import 'viriables' 引入 公共 代码 的提取 传参的形式
阅读全文
摘要:// ==UserScript== // @name Hook global // @namespace http://tampermonkey.net/ // @version 0.1 // @description try to take over the world! // @author 悦
阅读全文
摘要:<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Document</title> </head> <body> <script type="text/javascript"> function Person(
阅读全文
摘要:https://www.cnblogs.com/xiaoqi/p/js-x-encode-decode.html
阅读全文
摘要:https://www.cnblogs.com/hjqjk/p/5663748.html https://www.e-learn.cn/topic/2959291 https://blog.csdn.net/weixin_33755847/article/details/92928384 修改 /e
阅读全文
摘要://配合编程猫专用工具进行hook (function() { 'use strict'; //过 瑞数 debuger var eval_ = window.eval; window.eval = function(x){ eval_(x.replace("debugger;"," ; "));
阅读全文
摘要://将此代码粘贴到工具中 !function(t) { function n(e) { if (r[e]) return r[e].exports; var i = r[e] = { exports: {}, id: e, loaded: !1 }; return t[e].call(i.expor
阅读全文
摘要://当前版本hook工具只支持Content-Type为html的自动hook //下面是一个示例:这个示例演示了hook全局的cookie设置点 (function() { //严谨模式 检查所有错误 'use strict'; //document 为要hook的对象 这里是hook的cooki
阅读全文
摘要:var _constructor = constructor; Function.prototype.constructor = function(s) { if (s == "debugger"){ return function(){}; } return _constructor(s); }
阅读全文