Last active
September 20, 2024 15:45
-
-
Save jmelvnsn/b665a6e9be73c65686ecce9538d5c942 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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!'); | |
} | |
})(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Instructions:
Useage: