Skip to content

Instantly share code, notes, and snippets.

View GustavoJobstraibizer's full-sized avatar

Gustavo Henrique Jobstraibizer GustavoJobstraibizer

  • Brazil - São Paulo
View GitHub Profile
setInterval(function() {
var countUnsubscribe = 0;
var buttonsExit = document.querySelectorAll('._0mzm-.sqdOP.L3NKy._8A5w5');
var buttonUnsubscribe = document.querySelector('.aOOlW.-Cab_');
if (buttonsExit[1]) {
buttonsExit[1].click();
}
buttonUnsubscribe.click();
@GustavoJobstraibizer
GustavoJobstraibizer / cmder-vscode-integrated.md
Last active March 6, 2020 12:02
Cmder integrated with vscode
"terminal.external.windowsExec": "C:\\cmder\\Cmder.exe",
"terminal.integrated.shell.windows": "C:\\WINDOWS\\sysnative\\cmd.exe",
"terminal.integrated.shellArgs.windows": [
    "/K",
    "C:\\cmder\\vendor\\init.bat"
],

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.