Skip to content

Instantly share code, notes, and snippets.

@jmelvnsn
Last active September 20, 2024 15:45
Show Gist options
  • Save jmelvnsn/b665a6e9be73c65686ecce9538d5c942 to your computer and use it in GitHub Desktop.
Save jmelvnsn/b665a6e9be73c65686ecce9538d5c942 to your computer and use it in GitHub Desktop.
javascript:(function() {
var companyElement = document.querySelector('.job-details-jobs-unified-top-card__company-name');
if (companyElement) {
var companyName = companyElement.textContent.trim();
var encodedCompanyName = encodeURIComponent(companyName);
var airtableURL = 'https://airtable.com/app1PaujS9zxVGUZ4/shrqYt5kSqMzHV9R5/tbl8c8kanuNB6bPYr?filterContains_Company=' + encodedCompanyName;
window.open(airtableURL, '_blank');
} else {
alert('Company name not found!');
}
})();
@jmelvnsn
Copy link
Author

jmelvnsn commented Aug 30, 2024

Instructions:

  1. Create a new bookmark in Chrome by right-clicking the bookmarks bar and selecting "Add Page..."
  2. In the "Name" field, enter something like "Layoffs Finder"
  3. Paste the JavaScript code above into the "URL" field.
  4. Save the bookmark.

Useage:

  1. Navigate to a LinkedIn job posting.
  2. Click the bookmarklet.
  3. The browser will open a new window that redirects to Layoffs.fyi and matches the company name to the data set if it exists.

@jmelvnsn
Copy link
Author

demo.mov

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment