摘要:// ==UserScript==// @name 图片爬取// @namespace http://tampermonkey.net/// @version 1.0// @description Script for GDUT quiz pages// @a
抖音上流行的Dommer表情包引发了我们利用AI和油猴脚本进行自动爬取的兴趣。以下是如何使用油猴脚本完成这个任务的完整指南。
以下是一个完整的油猴脚本示例,假设目标网页是example.com/dommer-images/,图片命名模式为img_[0-1500].jpg:
javascript
// ==UserScript==// @name 图片爬取// @namespace http://tampermonkey.net/// @version 1.0// @description Script for GDUT quiz pages// @author Your Name// @match 你的网址// @require https://code.jquery.com/jquery-3.6.0.min.js// @grant GM_xmlhttpRequest// @connect ark.cn-beijing.volces.com// ==/UserScript==(function {'use strict';$(document).ready(function {// 发送请求的函数function sendChatCompletionRequest {// 获取所有图片的 src 属性const $imgSrc = $(".img-thumb");$imgSrc.each(function {const imgSrc = $(this).attr("src"); // 使用 this 获取当前元素console.log("图片地址:", imgSrc);// 发送请求下载图片GM_xmlhttpRequest({method: "GET",url: imgSrc,responseType: "blob",onload: function(response) {const blob = new Blob([response.response], { type: response.response.type });const url = URL.createObjectURL(blob);const a = document.createElement("a");a.href = url;a.download = imgSrc.split('/').pop; // 设置下载文件名为图片的文件名document.body.appendChild(a);a.click;document.body.removeChild(a);URL.revokeObjectURL(url);}});});}// 调用函数sendChatCompletionRequest;});});网页资源
AI协助
脚本生成
使用脚本
(3) 执行程序
执行脚本
(4)挂售卖平台啦
注:以上只是分享我的思路,都是在尝试,大家也可以互相探讨,互相挖掘AI 的魅力吧。
来源:爱上科学
免责声明:本站系转载,并不代表本网赞同其观点和对其真实性负责。如涉及作品内容、版权和其它问题,请在30日内与本站联系,我们将在第一时间删除内容!