Skip to content

Instantly share code, notes, and snippets.

@akbarazimifar
akbarazimifar / Export instagram followers and following to csv
Created April 12, 2023 15:05 — forked from abonzer/Export instagram followers and following to csv
Ddownload/Save a full list of your Instagram Followers / Following. - JS Console, Bookmarklet
javascript: var InstaUser = window.location.href.split('instagram.com')[1].split('/')[1];
var followersCount, followingCount;
getFollowCount(InstaUser);
function getFollowCount(user) {
url = 'https://www.instagram.com/' + user + '/?__a=1';
var xmlhttp = new XMLHttpRequest();
xmlhttp.onreadystatechange = function() {
if (this.readyState == 4 && this.status == 200) {
var getJSON = JSON.parse(this.responseText);
@akbarazimifar
akbarazimifar / README.md
Created December 16, 2022 19:23 — forked from mahmoud-eskandari/README.md
Install v2ray on Bridge:(Ubuntu +18 via systemd) - Upstream (Ubuntu +18/CentOS +7 via docker)

برای شروع میتوانید یک دایرکتوری در سرور خارجی ایجاد کنید و وارد آن شوید.

mkdir vmess
cd vmess

Option 1: Command-line download extension as zip and extract

extension_id=jifpbeccnghkjeaalbbjmodiffmgedin   # change this ID
curl -L -o "$extension_id.zip" "https://clients2.google.com/service/update2/crx?response=redirect&os=mac&arch=x86-64&nacl_arch=x86-64&prod=chromecrx&prodchannel=stable&prodversion=44.0.2403.130&x=id%3D$extension_id%26uc" 
unzip -d "$extension_id-source" "$extension_id.zip"

Thx to crxviewer for the magic download URL.