🏠 Home 

chrome webstore open images with better quality

google chrome webstore open images with better quality


Installer dette script?
  1. // ==UserScript==
  2. // @run-at document-start
  3. // @name chrome webstore open images with better quality
  4. // @description google chrome webstore open images with better quality
  5. // @match https://lh3.googleusercontent.com/*
  6. // @version 0.1
  7. // @namespace https://greasyfork.org/es/users/758165-ayd-prueba
  8. // @grant none
  9. // @author Alexito
  10. // @license MIT
  11. // ==/UserScript==
  12. if (window.location.href.indexOf("w640-h400") > 1){
  13. var url2 = window.location.href.replace('w640-h400','w1280-h1080');
  14. window.location.href=url2;
  15. }