您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Open full page link of image when clicked on Google Play app pages
// ==UserScript== // @name Link Images on Playstore // @namespace https://github.com/AbdurazaaqMohammed/userscripts // @version 1.0.1 // @description Open full page link of image when clicked on Google Play app pages // @author Abdurazaaq Mohammed // @match *://play.google.com/store/apps/* // @grant none // @license The Unlicense // @homepage https://github.com/AbdurazaaqMohammed/userscripts // @supportURL https://github.com/AbdurazaaqMohammed/userscripts/issues // ==/UserScript== (function() { 'use strict'; const images = document.getElementsByTagName('img'); for (var i = 0; i < images.length; i++) { images[i].addEventListener('click', function(e) { window.open(this.src.split('=')[0] + "=w2560-h1440-rw"); }); } })();