From d316af90b08e47d9456723dd06a5da40774f75f4 Mon Sep 17 00:00:00 2001 From: Sangeeth Sudheer Date: Mon, 24 Jun 2024 04:25:22 +0530 Subject: [PATCH] Add README --- linkedin-jobs-enhanced/README.md | 41 ++++++++++++++++++++++++++++++++ 1 file changed, 41 insertions(+) create mode 100644 linkedin-jobs-enhanced/README.md diff --git a/linkedin-jobs-enhanced/README.md b/linkedin-jobs-enhanced/README.md new file mode 100644 index 0000000..8c636fb --- /dev/null +++ b/linkedin-jobs-enhanced/README.md @@ -0,0 +1,41 @@ +# LinkedIn Jobs Enhanced + +## Motivation + +LinkedIn job filters are just too limited. There are spammy companies that spray their random-ass job listings every single day, which mkaes it difficult to find stuff. There is also no option to create custom filters (at least in Free plan AFAIK) to show/hide listings. + +## Setup + +1. Install this userscript +2. Go to Tampermonkey Dashboard > Settings > Set _Config Mode_ to _Advanced_ (THIS IS MANDATORY!) +3. Go to LinkedIn Jobs page, verify that extension is loaded and working. It should yell at you. + +## Configuring filters + +Post following setup instructions, visit Tampermonkey Dashboard > Click on script name > Click _Storage_ tab. + +You should see JSON like the following: + +```json +{ + "disliked": [], + "liked": [], + "mode": "hide-disliked", + "debug": false +} +``` + +Add companies you like into `liked` as strings, companies you don't want to be shown in listing page into `disliked`. The names are not case-sensitive, and can include partial names. Note that there is no exact match. i.e, if you added `"Evil"` into `disliked` and there are two companies in job search page — "Evil Corp" and "Not Evil Corp", it'll hide both. + +### Modes + +Valid values: `"hide-disliked"` (default), `"show-liked"` + +As the values suggest, it either hides companies that you set in `disliked` array in storage (default) or it'll only show companies in `liked` array. + + +## TODO + +- [ ] Add icons to job list items to add to liked/disliked to avoid manual edits +- [ ] Show some config UI to toggle between _Show liked_ and _Hide disliked_ modes +- [ ] Preconfigured lists of naughty companies (ones who spam the job listings)