// ==UserScript==
// @name View Private Photos
// @namespace http://tampermonkey.net/
// @version 0.1
// @description Try to take over the world!
// @author You
// @match https://www.facebook.com/*
// @grant none
// ==/UserScript==
Additional Tips and Recommendations:
3. Phishing Forums
Italian-language hacking forums may offer a “private tool.” You are asked to log in with your Facebook credentials. This is a classic phishing attack to compromise your account. vedere foto private facebook greasemonkey
(function()
'use strict';
var images = document.querySelectorAll('img');
images.forEach(function(img)
img.onclick = function()
window.open(img.src, '_blank');
;
);
)();