您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
try to find out the download url of a google plus image
// ==UserScript== // @name google_plus_image_address_finder // @namespace NULL // @version 0.1 // @description try to find out the download url of a google plus image // @author Simon Shi // @match https://plus.google.com/photos/photo/* // @grant unsafeWindow // @run-at context-menu // ==/UserScript== function get_image() { var image_list = []; image_list = unsafeWindow.document.getElementsByClassName("XkWAb-LmsqOc XkWAb-Iak2Lc"); if(image_list.length === 0){ console.log("[LS]no image found!!!"); return 0; } var image_src = image_list[image_list.length-1].src; console.log("[LS]image src = "+image_src); var temp_a=document.createElement('a'); document.body.appendChild(temp_a); temp_a.href=image_src.split("=")[0] + "=s0-d-ip"; temp_a.click(); document.removeChild(temp_a); } (function() { 'use strict'; console.log("[LS]Google Plus Image address finder :start"); get_image(); })();
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址