资源分享吧详情页首图抓取油猴子脚本
由于需要从资源分享吧搬运资源,需要经常抓取首图图片,手工没法直接复制,只能使用脚本把图片弹窗弹出来,再报错,搞了个油猴子脚本来处理,以便备用,脚本如下:
// ==UserScript== // @name 资源分享吧首页图片 // @namespace http://tampermonkey.net/ // @version 0.1 // @description try to take over the world! // @author You // @match https://www.zyfx8.cn/*.html // @grant none // @license GPL-3.0 License // @require http://libs.baidu.com/jquery/2.0.0/jquery.min.js // ==/UserScript== (function() { 'use strict'; // Your code here... var url = $(".article-info>.thumb>.iop.lazyloaded").attr('data-bg') window.open(url,'newindow','height=500,width=500,top=0,left=0,toolbar=no,menubar=no,scrollbars=no,resizable=no,location=no,status=no'); })();
这样就方便很多了。