尝试如何通过AI 赚钱方法一(不懂编程也可以做到)

B站影视 2024-12-30 09:27 2

摘要:// ==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 的魅力吧。

来源:爱上科学

相关推荐