forked from lovmoon3k/useful-script
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinsta_getUid.js
36 lines (34 loc) · 920 Bytes
/
insta_getUid.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
export default {
name: {
en: "Get your insta User ID",
vi: "Lấy insta user id của bạn",
},
description: {
en: "Get id of your instagram user",
vi: "Lấy id của người dùng instagram đang đăng nhập",
},
blackList: [],
whiteList: ["*://*.instagram.com"],
func: function () {
alert("Đang lấy user id... bấm ok để tiếp tục");
fetch(location.href + "?__a=1")
.then((response) => response.json())
.then((json) => {
const {
fbid,
id,
username,
full_name,
profile_pic_url_hd,
profile_pic_url,
edge_owner_to_timeline_media,
} = json.graphql.user;
console.log(json.graphql.user);
window.prompt(`User ID của ${username}:`, id);
})
.catch((e) => {
alert("Lỗi: " + e.toString());
});
},
};
export function getUid() {}