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!'); | |
} |
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
Sublime > Preferences > Key Bindings-User | |
Add: | |
{ "keys": ["enter"], "command": "new_window" } |