Skip to content

Commit

Permalink
chore: Update build script to include the latest changes in the outpu…
Browse files Browse the repository at this point in the history
…t directory
  • Loading branch information
Goksel Eryigit committed Sep 3, 2024
1 parent fd61ba5 commit c80a346
Show file tree
Hide file tree
Showing 6 changed files with 16 additions and 17 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release-on-push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:

- name: Create ZIP file
run: |
cd dist && zip -r ../linkedin-cv-scorer.zip *
cd dist && zip -r ../cv-scorer.zip *
- name: Bump version and push tag
id: bump
Expand All @@ -37,5 +37,5 @@ jobs:
- name: Release
uses: softprops/action-gh-release@v2
with:
files: linkedin-cv-scorer.zip
files: cv-scorer.zip
tag_name: ${{ steps.bump.outputs.new_tag }}
9 changes: 4 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,11 @@
# Chrome Extension: Linkedin job scorer
# Chrome Extension: Job scorer

Enhance your job search by seamlessly comparing LinkedIn job descriptions with your CV to ensure the perfect match with OpenAI ChatGPT.
Enhance your job search by seamlessly comparing job descriptions with your CV to ensure the perfect match with OpenAI ChatGPT.

Compare the uploaded CV and job description on Linkedin job page with AI and score from 1 to 10.
Compare the uploaded CV and job description on job page with AI and score from 1 to 10.

![Google Chrome - Extensions 2024-05-19 at 7 07 18 PM (1)](https://github.com/geryit/Chrome-Extension-Linkedin-job-scorer/assets/514149/5850ac9a-239c-4cf4-8c41-94f036ad14b2)


# Build extension

Simply run
Expand All @@ -16,6 +15,6 @@ npm i
npm run build
```

Download the Live Extension: https://chromewebstore.google.com/detail/linkedin-cv-scorer-with-a/iecbjjbbjoanoijdhmppogkcndljcjfb
Download the Live Extension: https://chromewebstore.google.com/detail/cv-scorer-with-a/iecbjjbbjoanoijdhmppogkcndljcjfb

Watch this video for the rest: https://www.youtube.com/watch?v=4ykBFAjjXe4
6 changes: 3 additions & 3 deletions docs/index.md
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
## Privacy Policy for LinkedIn Job Scorer Chrome Extension
## Privacy Policy for Job Scorer Chrome Extension

### Introduction

Thank you for using the LinkedIn Job Scorer Chrome Extension. Your privacy is important to us. This Privacy Policy explains how we collect, use, and protect your information when you use our extension.
Thank you for using the Job Scorer Chrome Extension. Your privacy is important to us. This Privacy Policy explains how we collect, use, and protect your information when you use our extension.

### Information We Collect

- **CV Data**: When you upload your CV for comparison, we temporarily process the content of your CV to generate a score.
- **Job Description Data**: We process job descriptions from LinkedIn pages to compare with your CV and generate a match score.
- **Job Description Data**: We process job descriptions from pages to compare with your CV and generate a match score.

### How We Use Your Information

Expand Down
2 changes: 1 addition & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<meta charset="UTF-8" />
<link rel="icon" type="image/png" href="/logo-48p.png" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Linkedin CV Scorer</title>
<title>CV Scorer</title>
</head>
<body>
<div id="root"></div>
Expand Down
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "linkedin-job-rating-with-openai-chatgpt",
"description": "A Chrome extension that rates job postings on LinkedIn based on the job description with OpenAI ChatGPT",
"name": "job-rating-with-openai-chatgpt",
"description": "A Chrome extension that rates job postings by job description with OpenAI ChatGPT",
"private": false,
"version": "1.0.0",
"type": "module",
Expand All @@ -9,10 +9,10 @@
"build": "tsc && INLINE_RUNTIME_CHUNK=false vite build && tsc src/*.ts --outDir dist",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"preview": "vite preview",
"zip": "npm run build && cd dist && zip -r ~/Downloads/linkedin-cv-scorer.zip *"
"zip": "npm run build && cd dist && zip -r ~/Downloads/cv-scorer.zip *"
},
"dependencies": {
"pdfjs-dist": "^4.5.136",
"pdfjs-dist": "^4.6.82",
"react": "^18.3.1",
"react-dom": "^18.3.1"
},
Expand Down
4 changes: 2 additions & 2 deletions public/manifest.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "Linkedin CV Scorer with OpenAI ChatGPT",
"description": "Enhance your job search by seamlessly comparing LinkedIn job descriptions with your CV to ensure the perfect match with AI.",
"name": "CV Scorer with OpenAI ChatGPT",
"description": "Enhance your job search by seamlessly comparing job descriptions with your CV to ensure the perfect match with AI.",
"version": "1.5",
"manifest_version": 3,
"action": {
Expand Down

0 comments on commit c80a346

Please sign in to comment.