LinkedIn Job Tool

*** 🐞 Bugs Fixed 🔨 *** The LinkedIn Job Tool is a web extension that will provide relevant information for job seekers on…

Τι είναι το LinkedIn Job Tool;

Το LinkedIn Job Tool είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Ravi Patel, και η κύρια λειτουργία του είναι "*** 🐞 Bugs Fixed 🔨 *** The LinkedIn Job Tool is a web extension that will provide relevant information for job seekers on…".

Στιγμιότυπα Επέκτασης

screenshot
screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης LinkedIn Job Tool

Λήψη αρχείων επέκτασης LinkedIn Job Tool σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        *** 🐞 Bugs Fixed 🔨 *** 

The LinkedIn Job Tool is a web extension that will provide relevant information for job seekers on LinkedIn Jobs.
The extension provides the following features:


1. Highlights the sponsorship status(Relevant to Non-Immigrants in the United States):
- If the employer mentions about sponsorship in the job description, then it will highlight on the page.
- Red Color - If the employer is not willing to provide sponsorship.
- Green Color - If the employer provides sponsorship.
- Yellow Color - If nothing is mentioned in the job description about sponsorship.
    

2. Highlights the job requirements(work experience):
- If the employer describes previous work experience in the job description then it will appear on the page like 2+ years experience.
- Also, some of the job requirement skills will highlight too like programming languages.
- Highlighted Color - Purple
    

3. Tracks the job links:
- Clicking on web extension will open a new tab that shows all the LinkedIn jobs visited links.

Note: The web extension must remain ON. For the records copy the page(Ctrl + A/Command + A) and save it on local storage. 


4. Alerts the user:
- If the Job link is visited twice or more then an alert box will appear stating "You've already visited this page before."

If you like it, then please rate 5-stars ⭐⭐⭐⭐⭐ and share it with others!!! 👬👫👭
Thank You 🙏
    
My Extension is not working??
Follow these steps:
- Make sure the extension is turned ON 
- Try to open jobs on new tab
- If it still doesn't work then refresh the page


    
Note: This is not the LinkedIn Official tool. This tool is specific to LinkedIn Jobs.                    

Βασικές Πληροφορίες Επέκτασης

Όνομα LinkedIn Job Tool LinkedIn Job Tool
ID febigjpndeimkgicfjkfnllldaiieljo
Επίσημο URL https://chrome.google.com/webstore/detail/linkedin-job-tool/febigjpndeimkgicfjkfnllldaiieljo
Περιγραφή *** 🐞 Bugs Fixed 🔨 *** The LinkedIn Job Tool is a web extension that will provide relevant information for job seekers on…
Μέγεθος Αρχείου 11.29 KB
Αριθμός Εγκαταστάσεων 979
Τρέχουσα Έκδοση 1.3
Τελευταία Ενημέρωση 2020-09-28
Ημερομηνία Δημοσίευσης 2020-05-14
Αξιολόγηση 5.00/5 Συνολικά 5 Αξιολογήσεις
Προγραμματιστής Ravi Patel
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "LinkedIn Job Tool",
    "version": "1.3",
    "manifest_version": 2,
    "icons": {
        "128": "128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.linkedin.com\/jobs\/view\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "browser_action": {
        "default_title": "Click here to see the LinkedIn visited job links"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com; object-src 'self'",
    "permissions": [
        "tabs"
    ]
}