Greasy Fork

Greasy Fork is available in English.

Simulate Traffic to LinkedIn URL

Simulate traffic to a specified LinkedIn URL by sending HTTP requests every 10 seconds.

当前为 2024-03-25 提交的版本,查看 最新版本

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Greasemonkey 油猴子Violentmonkey 暴力猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Violentmonkey 暴力猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Userscripts ,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展后才能安装此脚本。

(我已经安装了用户脚本管理器,让我安装!)

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

(我已经安装了用户样式管理器,让我安装!)

// ==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);
})();