OpenTweetImageOrig

ツイート画像をクリックで原寸大表示します. (Click to open tweet image as original size)

Bu betiği kurabilmeniz için Tampermonkey, Greasemonkey ya da Violentmonkey gibi bir kullanıcı betiği eklentisini kurmanız gerekmektedir.

Bu betiği kurabilmeniz için Tampermonkey ya da Violentmonkey gibi bir kullanıcı betiği eklentisini kurmanız gerekmektedir.

Bu betiği kurabilmeniz için Tampermonkey ya da Violentmonkey gibi bir kullanıcı betiği eklentisini kurmanız gerekmektedir.

Bu betiği kurabilmeniz için Tampermonkey ya da Userscripts gibi bir kullanıcı betiği eklentisini kurmanız gerekmektedir.

You will need to install an extension such as Tampermonkey to install this script.

Bu komut dosyasını yüklemek için bir kullanıcı komut dosyası yöneticisi uzantısı yüklemeniz gerekecek.

(Zaten bir kullanıcı komut dosyası yöneticim var, kurmama izin verin!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(Zateb bir user-style yöneticim var, yükleyeyim!)

// ==UserScript==
// @name OpenTweetImageOrig
// @include https://twitter.com/*
// @version 0.0.1.20181020044352
// @namespace https://greasyfork.org/users/8032
// @description ツイート画像をクリックで原寸大表示します. (Click to open tweet image as original size)
// ==/UserScript==

addEventListener("click", function(event) {
  var elem = event.target;
  if (elem.src && elem.src.startsWith("https://pbs.twimg.com/media/")) {
    window.open(elem.src.replace(/:[^/]+$|$/, ":orig"), "_blank");
    event.preventDefault();
  }
}, true);