Google Album Archive Direct Photo Link

Get Google Photo Direct Link

Version vom 13.06.2017. Aktuellste Version

// ==UserScript==
// @name         Google Album Archive Direct Photo Link
// @namespace    http://qqboxy.blogspot.com
// @version      0.1
// @description  Get Google Photo Direct Link
// @author       QQBoxy
// @match        *.googleusercontent.com/*
// @grant        none
// ==/UserScript==

(function() {
    'use strict';
    var linkSplit = window.location.href.split("=");
    if(linkSplit[1] !== "s0-tmp.jpg") {
		var directLink = linkSplit[0] + "=s0-tmp.jpg";
		window.location.href = directLink;
	}
})();