Greasy Fork is available in English.
Simulate traffic to a specified LinkedIn URL by sending HTTP requests every 10 seconds.
当前为
// ==UserScript==
// @name Simulate Traffic to LinkedIn URL
// @namespace http://tampermonkey.net/
// @version 0.1
// @description Simulate traffic to a specified LinkedIn URL by sending HTTP requests every 10 seconds.
// @author Your Name
// @match https://www.linkedin.com/
// @grant none
// ==/UserScript==
(function() {
'use strict';
// Specify the URL to send traffic to
var urlToSendTraffic = 'https://www.linkedin.com/feed/update/urn%3Ali%3Ashare%3A7177076245338202112?lipi=urn%3Ali%3Apage%3Ad_flagship3_notifications%3BzKTD5V20RpqBCkhtwzX4hg%3D%3D';
// Function to send traffic to the URL
function sendTraffic() {
fetch(urlToSendTraffic)
.then(response => {
console.log('Traffic sent successfully');
})
.catch(error => {
console.error('Error sending traffic:', error);
});
}
// Set interval to send traffic every 10 seconds (10000 milliseconds)
setInterval(sendTraffic, 10000);
})();