您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
descargar fotos de los perfiles y busca clones/fakes con un click en la web de citas adoptauntio.com
当前为
// ==UserScript== // @name AdoptaUnTioPlus // @namespace adoptauntioplus // @version 0.4.9 // @description descargar fotos de los perfiles y busca clones/fakes con un click en la web de citas adoptauntio.com // @match http://www.adoptauntio.es/* // @include http://www.adoptauntio.es/* // @author Vegon // ==/UserScript== $(function(){ $('#photo-gallery .gallery-fullsize-view').each(function() { var urlfoto = $(this).children('.image-wrapper').find('img').attr('src'); var linkafoto = '<div style="margin:3px 0; float: left;"><a style="background:url(http://www.mvusertools.com/ext/aut/save-icon.png) no-repeat;width: 16px; height: 16px; display: block;overflow: hidden; text-indent: 100%; white-space: nowrap;" href="'+urlfoto+'" target="_blank" title="Descargar foto" >Descargar foto</a></div>'; var googleapi = 'https://www.google.com/searchbyimage?&image_url='+urlfoto+''; var linkgooglesearch = '<div style="margin:3px 0 0 5px;"><a style="background:url(http://www.mvusertools.com/ext/aut/lupa-icon.png) no-repeat;width: 16px; height: 16px; display: block;overflow: hidden; text-indent: 100%; white-space: nowrap;" href="'+googleapi+'" target="_blank" title="Buscar clones de la foto" >Buscar clones de la foto</a></div>'; $(this).children('.image-wrapper').prepend(linkgooglesearch); $(this).children('.image-wrapper').prepend(linkafoto); }); });