Instagram 免登陆

IG网址自动跳转到批奶(pixnoy),查看帖子内容。

// ==UserScript==
// @name         Instagram 免登陆
// @version      1.3
// @namespace   https://gf.qytechs.cn/users/1171320
// @description  IG网址自动跳转到批奶(pixnoy),查看帖子内容。
// @match1       https://www.instagram.com/* 如加上,首页会一直刷新。不加上,用户搜不到。
// @match       https://www.instagram.com/accounts/login/*
// @author        yzcjd
// @author2       Lama AI 辅助
// @run-at       document-end
// @grant        none
// @license MIT
// ==/UserScript==

(function() {
    'use strict';

    // 获取当前网址
    const currentUrl = window.location.href;

    // 将网址中的域名部分替换为新的目标域名
    let newUrl = currentUrl.replace('https://www.instagram.com/accounts/login/?next=https%3A%2F%2Fwww.instagram.com%2F', 'https://www.pixnoy.com/profile/');

    // 删除链接末尾的 "%2F&is_from_rle"
    if (newUrl.endsWith('%2F&is_from_rle')) {
        newUrl = newUrl.slice(0, -15); // 去掉最后15个字符
    }

    // 跳转到新的网址
    window.location.href = newUrl;
})();

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址