Skip to content

Commit

Permalink
fix: Updating Resume (#71)
Browse files Browse the repository at this point in the history
- Adding script to allow copy/paste of the relevant details for applied jobs
  • Loading branch information
incutonez authored Oct 16, 2024
1 parent dcbd230 commit c810257
Show file tree
Hide file tree
Showing 7 changed files with 27 additions and 3 deletions.
Binary file modified Jef Harkay Resume.pdf
Binary file not shown.
1 change: 1 addition & 0 deletions eslint.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ export default [
"ignores": [
"**/dist",
"ui/src/assets/theme/*",
"linkedIn/*",
"**/generated",
"**/eslint.config.js"
],
Expand Down
11 changes: 11 additions & 0 deletions linkedIn/details.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
browser.contextMenus.create({
id: "details-copy",
title: "Copy Job Details",
onclick() {
browser.tabs.executeScript({
// This must be a separate file, so we can access the HTML on the current page... background page's can't access the HTML
// https://stackoverflow.com/a/20419249/1253609
file: 'details2.js'
});
}
});
1 change: 1 addition & 0 deletions linkedIn/details2.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions linkedIn/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@
* In order to use this, go to about:debugging#/runtime/this-firefox and load the manifest.json file as the Temporary Add-on
*/
const MatchRegex = /Viewed|Applied|Promoted/;
const CompaniesRegex = /SideRamp|DataAnnotation|Veeva Systems|Aha!|HireMeFast|Team Remotely|Recruiting from Scratch|myGwork|Jerry|RemoteWorker|ClickJobs\.io|Varsity Tutors|Ascendion/i;
const CompaniesRegex = /Get It Recruit|Actalent|Patterned Learning|G2i|SideRamp|DataAnnotation|Veeva Systems|Aha!|HireMeFast|Team Remotely|Recruiting from Scratch|myGwork|Jerry|RemoteWorker|ClickJobs\.io|Varsity Tutors|Ascendion/i;
const Today = new Date();
const OneWeek = 604800000 * 2;
const OneWeek = 604800000;
const HoursAgoRegex = /(\d+) hours ago/;
const MinutesAgoRegex = /minutes ago/;
const HoursToCheck = undefined;
Expand Down
11 changes: 11 additions & 0 deletions linkedIn/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,22 @@
"version": "1.0",

"description": "Removes the promoted jobs from a LinkedIn Job search.",
"permissions": [
"clipboardWrite",
"contextMenus",
"tabs",
"activeTab"
],

"icons": {
"48": "icon.png"
},

"background": {
"scripts": [
"details.js"
]
},
"content_scripts": [
{
"matches": ["*://*.linkedin.com/jobs/search/*"],
Expand Down
2 changes: 1 addition & 1 deletion resume/src/components/SectionContactInfo.vue
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ import IconPin from "@/assets/IconPin.vue";
<IconPin class="size-5" />
</td>
<td class="pl-3">
Sterling, VA
Fairfax, VA
</td>
</tr>
<tr>
Expand Down

0 comments on commit c810257

Please sign in to comment.