如何将 JQuery 注入任何网页
代码如下:
javascript:(function() {
function l(u, i) {
var d = document;
if (!d.getElementById(i)) {
var s = d.createElement('script');
s.src = u;
s.id = i;
d.body.appendChild(s);
}
}
l('//code.jquery.com/jquery-3.2.1.min.js', 'jquery')
})();
- Link : https://zdyla.com/post/how-to-inject-jquery-into-any-web-page.html
- Copyright Notice : Unless otherwise stated, please contact the author for authorization and indicate the source!