-
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
30 changed files
with
10,364 additions
and
581 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
# dependencies | ||
/node_modules | ||
/.pnp | ||
.pnp.js | ||
|
||
# testing | ||
/coverage | ||
|
||
#cache | ||
.turbo | ||
|
||
# misc | ||
.DS_Store | ||
*.pem | ||
|
||
# debug | ||
npm-debug.log* | ||
yarn-debug.log* | ||
yarn-error.log* | ||
.pnpm-debug.log* | ||
|
||
# local env files | ||
.env* | ||
|
||
out/ | ||
build/ | ||
dist/ | ||
|
||
.plasmo | ||
|
||
# bpp - http://bpp.browser.market/ | ||
keys.json | ||
|
||
# typescript | ||
.tsbuildinfo |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
/** | ||
* @type {import('prettier').Options} | ||
*/ | ||
export default { | ||
arrowParens: 'avoid', | ||
printWidth: 160, | ||
tabWidth: 2, | ||
semi: true, | ||
singleQuote: true, | ||
trailingComma: 'none', | ||
bracketSpacing: true, | ||
bracketSameLine: true, | ||
plugins: ['@ianvs/prettier-plugin-sort-imports'], | ||
importOrder: [ | ||
'<BUILTIN_MODULES>', // Node.js built-in modules | ||
'<THIRD_PARTY_MODULES>', // Imports not matched by other special words or groups. | ||
'^@plasmo/(.*)$', | ||
'^@plasmohq/(.*)$', | ||
'^~(.*)$', | ||
'^[./]' | ||
] | ||
}; |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,33 +1,45 @@ | ||
# Salary Seeker | ||
# ![Salary Seeker](https://github.com/user-attachments/assets/d8ad839f-d418-4c76-aba5-464f675c2a0d) | ||
|
||
Calculate the salary range for jobs advertised on [Seek](https://seek.com.au). | ||
Take the guess work out of job hunting 🎉 | ||
|
||
Shows you the hidden salary range for jobs advertised on [Seek Australia](https://seek.com.au) and [New Zealand](https://www.seek.co.nz) to make searching for jobs less frustrating. | ||
|
||
[<img src="https://cdn.buymeacoffee.com/buttons/v2/default-orange.png" width="150" />](https://www.buymeacoffee.com/cheesestringer) | ||
|
||
### Install | ||
If you'd like to find the hidden price range for property check out [Property Seeker](https://github.com/cheesestringer/property-seeker). | ||
|
||
## Install | ||
|
||
- [Chrome](https://chrome.google.com/webstore/detail/salary-seeker/okapllpgbpdbfbpaelpjpgdmholakcfm) | ||
- [Firefox](https://addons.mozilla.org/en-US/firefox/addon/salary-seeker) | ||
- [Firefox for Android](https://addons.mozilla.org/en-US/firefox/addon/salary-seeker) | ||
- [Opera](https://addons.opera.com/en/extensions/details/salary-seeker) | ||
- [Edge](https://microsoftedge.microsoft.com/addons/detail/boiecpigoakicdienoiknphpnkejcacc) | ||
|
||
![Demo](demo.png?raw=true) | ||
## Privacy | ||
|
||
### Privacy | ||
All searches are performed within your own browser and are not stored or shared to anyone else. | ||
|
||
To enforce this our [Content Security Policy](https://developer.mozilla.org/en-US/docs/Web/HTTP/CSP) uses the `connect-src` directive to restrict communication to Seek's job search API at `jobsearch-api.cloud.seek.com.au`. | ||
## Demo | ||
|
||
![Seek](https://github.com/user-attachments/assets/7bf88fc9-ad93-4e96-b407-e6cb856fdaba) | ||
|
||
## Can I use this on mobile? | ||
|
||
For Android users, you can install Salary Seeker using Firefox. | ||
|
||
For iOS users, check out [What's the salary](https://www.whatsthesalary.com?source=salary-seeker) from Tony Lu, which lets you copy and paste job listings to find the hidden salary range. | ||
|
||
### Testing | ||
## Testing | ||
|
||
We use [BrowserStack](https://browserstack.com) for automated testing on different browsers and operating systems. | ||
[BrowserStack](https://browserstack.com) is used for automated testing on different browsers and operating systems. | ||
|
||
[![BrowserStack](https://i.imgur.com/r3uUfYN.png)](https://browserstack.com) | ||
|
||
### Disclaimer | ||
## Disclaimer | ||
|
||
This extension is not connected with, or approved by, Seek Limited. | ||
|
||
### Acknowledgements | ||
## Acknowledgements | ||
|
||
Based on [b3n-j4m1n's salary-seeker](https://github.com/b3n-j4m1n/salary-seeker) bash script. |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
# Security Policy | ||
|
||
## Reporting a Vulnerability | ||
|
||
If you think you've found a vulnerability please send an email to [email protected] |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Oops, something went wrong.