This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//print screen | |
document.addEventListener('paste', function(e) { | |
// Panodan veri al | |
const items = (e.clipboardData || e.originalEvent.clipboardData).items; | |
for (let item of items) { | |
if (item.type.indexOf('image') !== -1) { | |
// Görüntü dosyasını al | |
const blob = item.getAsFile(); | |
const formData = new FormData(); | |
formData.append('image', blob, 'screenshot.png'); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==UserScript== | |
// @name X.com Takipçi Listesi | |
// @namespace http://tampermonkey.net/ | |
// @version 1.2 | |
// @description X.com'da sizi geri takip etmeyen kullanıcıların linklerini bir dosyaya kaydeder. | |
// @author Gürkan Özsoy | |
// @match https://x.com/otukentimur/following* | |
// @grant none | |
// ==/UserScript== |