Instagram ID Viewer

View ID of user instagram

当前为 2018-09-11 提交的版本,查看 最新版本

您需要先安装一个扩展,例如 篡改猴Greasemonkey暴力猴,之后才能安装此脚本。

您需要先安装一个扩展,例如 篡改猴暴力猴,之后才能安装此脚本。

您需要先安装一个扩展,例如 篡改猴暴力猴,之后才能安装此脚本。

您需要先安装一个扩展,例如 篡改猴Userscripts ,之后才能安装此脚本。

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

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

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

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

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

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

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

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

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

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

// ==UserScript==
// @name         Instagram ID Viewer
// @namespace    http://tampermonkey.net/
// @version      1.16
// @description  View ID of user instagram
// @author       Anonymous
// @match        https://www.instagram.com/*/*
// @grant        none
// ==/UserScript==
document.querySelector('#react-root > section > main > div > header > section > div > h1').innerText += ', ID: '+window._sharedData.entry_data.ProfilePage[0].graphql.user.id;
oldT = document.querySelector('#react-root > section > main > div > header > section > div > h1').innerText;
vc();

function vc(){
   var newT = document.querySelector('#react-root > section > main > div > header > section > div > h1').innerText;
   if(oldT !== newT) {
       document.querySelector('#react-root > section > main > div > header > section > div > h1').innerText += ', ID: '+ getID(location.href);
       oldT = document.querySelector('#react-root > section > main > div > header > section > div > h1').innerText;
       setTimeout(vc,100);
   } else {
       setTimeout(vc,100);
   }
}

function getID(url,callback){
	xhr = new XMLHttpRequest();
	xhr.open('get',url,callback?true:false);
    xhr.send();
	if(callback !== undefined)
  		callback(xhr.responseText.split('"id":')[1].split(',')[0].split('"')[1]);
	else
		return xhr.responseText.split('"id":')[1].split(',')[0].split('"')[1];
}