Greasy Fork is available in English.

Link Images on Playstore

Open full page link of image when clicked on Google Play app pages

  1. // ==UserScript==
  2. // @name Link Images on Playstore
  3. // @namespace https://github.com/AbdurazaaqMohammed/userscripts
  4. // @version 1.0.1
  5. // @description Open full page link of image when clicked on Google Play app pages
  6. // @author Abdurazaaq Mohammed
  7. // @match *://play.google.com/store/apps/*
  8. // @grant none
  9. // @license The Unlicense
  10. // @homepage https://github.com/AbdurazaaqMohammed/userscripts
  11. // @supportURL https://github.com/AbdurazaaqMohammed/userscripts/issues
  12. // ==/UserScript==
  13.  
  14. (function() {
  15. 'use strict';
  16.  
  17. const images = document.getElementsByTagName('img');
  18.  
  19. for (var i = 0; i < images.length; i++) {
  20. images[i].addEventListener('click', function(e) {
  21. window.open(this.src.split('=')[0] + "=w2560-h1440-rw");
  22. });
  23. }
  24. })();