Skip to content

Instantly share code, notes, and snippets.

View rmcnaughGitHub's full-sized avatar
😶

Raymond Richards-Mcnaught rmcnaughGitHub

😶
View GitHub Profile
@rmcnaughGitHub
rmcnaughGitHub / delete.md
Created June 10, 2020 19:44 — forked from timwco/delete.md
LinkedIn: Delete Messages (April 2020)

What

LinkedIn is a valuable resource, but sometimes it sucks. One of those times is when you want to delete messages. You have to select each message one by one. It takes about 4 "clicks" to successfully delete a message.

This script should help. Since LI requires you to perform multiple steps, I decided to automate it for you. Once you initiate the script, it will run every second. If a message has the ability to be deleted, it will be. If not, it will be archived. Some "InMail" messages cannot be deleted on the web app. This script should work as long as LI doesn't change their page layout or element names, which will happen eventually.

Last tested: April, 29, 2020

Setup & Cavets

@rmcnaughGitHub
rmcnaughGitHub / vanilla-js-cheatsheet.md
Created January 26, 2018 23:23 — forked from thegitfather/vanilla-js-cheatsheet.md
Vanilla JavaScript Quick Reference / Cheatsheet
@rmcnaughGitHub
rmcnaughGitHub / .gitignore
Created December 1, 2016 19:44 — forked from octocat/.gitignore
Some common .gitignore configurations
# Compiled source #
###################
*.com
*.class
*.dll
*.exe
*.o
*.so
# Packages #
@rmcnaughGitHub
rmcnaughGitHub / gist:f3ec52390acd19a6f6eb
Created March 8, 2016 21:18 — forked from jlengstorf/gist:2760340
#8 Code example from "JSON: What It Is, How It Works, & How to Use It"
$.ajax(
type:'GET',
url:"http://example.com/users/feeds/",
data:"format=json&id=123",
success:function(feed) {
document.write(feed);
},
dataType:'jsonp'
);