Skip to content

Instantly share code, notes, and snippets.

View maanimis's full-sized avatar
🎯
Focusing

Meisam Maani maanimis

🎯
Focusing
  • Tabriz
View GitHub Profile
@maanimis
maanimis / script.js
Created October 22, 2024 13:00
Violentmonkey adblocker script for tradingview.com
// ==UserScript==
// @name tradingview.com
// @namespace Violentmonkey Scripts
// @match https://www.tradingview.com/chart/*
// @grant none
// @version 1.0
// @author -
// @description 12/26/2023, 6:05:47 PM
// ==/UserScript==
@maanimis
maanimis / script.js
Created October 22, 2024 13:00
Violentmonkey adblocker script for soundcloud.com
// ==UserScript==
// @name soundcloud.com
// @namespace Violentmonkey Scripts
// @match https://soundcloud.com/*
// @grant none
// @version 1.0
// @author -
// @description 1/22/2024, 2:01:13 PM
// ==/UserScript==
@maanimis
maanimis / script.js
Last active October 22, 2024 12:59
Violentmonkey adblocker script for chess.com
// ==UserScript==
// @name chess.com
// @namespace Violentmonkey Scripts
// @match https://www.chess.com/*
// @grant none
// @version 1.0
// @author -
// @description 9/15/2023, 2:44:06 PM
// ==/UserScript==
@maanimis
maanimis / script.js
Last active October 29, 2024 16:13
A script designed to extract information from twitter / x
const xPath = {
content:
"/html/body/div[1]/div/div/div[2]/main/div/div/div/div/div/section/div/div/div[1]/div/div/article/div/div/div[3]/div[1]",
postDate:
"/html/body/div[1]/div/div/div[2]/main/div/div/div/div/div/section/div/div/div[1]/div/div/article/div/div/div[3]/div[last()-1]",
createDate:
"/html/body/div[1]/div/div/div[2]/main/div/div/div/div/div/div[3]/div/div/div/div/div[4]/div/span[3]/span",
};
const key = "priv8";
const link = location.href;