Hide Promoted Jobs
Hides promoted job postings on LinkedIn's job search pages.
What is Hide Promoted Jobs?
Hide Promoted Jobs is a Chrome extension developed by Fabricio Duarte, and its main feature is "Hides promoted job postings on LinkedIn's job search pages.".
Extension Screenshots
Download Hide Promoted Jobs Extension CRX File
Download Hide Promoted Jobs extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
No more getting distracted by job postings that don't have any of the searched keywords on LinkedIn, enhance the job seeking experience!
Extension Basic Information
Name | Hide Promoted Jobs |
ID | bmilkimafelnhekidknkamkhkbeciijg |
Official URL | https://chromewebstore.google.com/detail/hide-promoted-jobs/bmilkimafelnhekidknkamkhkbeciijg |
Description | Hides promoted job postings on LinkedIn's job search pages. |
File Size | 13.14 KB |
Installation Count | 2,128 |
Current Version | 1.3 |
Last Updated | 2023-02-01 |
Publish Date | 2023-01-21 |
Rating | 4.89/5 Total 19 Ratings |
Developer | Fabricio Duarte |
[email protected] | |
Payment Type | free |
Help Page URL | https://github.com/winterhazel/hide-promoted-jobs |
Supported Languages | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Hide Promoted Jobs", "version": "1.3", "description": "Hides promoted job postings on LinkedIn's job search pages.", "homepage_url": "https:\/\/github.com\/winterhazel\/hide-promoted-jobs", "icons": { "16": "icons\/icon16.png", "32": "icons\/icon32.png", "48": "icons\/icon48.png", "64": "icons\/icon64.png", "128": "icons\/icon128.png" }, "action": { "browser_style": true, "default_icon": { "16": "icons\/icon16.png", "32": "icons\/icon32.png", "48": "icons\/icon48.png", "64": "icons\/icon64.png", "128": "icons\/icon128.png" }, "default_title": "Toggle Extension" }, "background": { "service_worker": "js\/background.js" }, "content_scripts": [ { "matches": [ "*:\/\/*.linkedin.com\/*" ], "js": [ "js\/hide.js" ] } ], "permissions": [ "storage" ], "web_accessible_resources": [ { "resources": [ "js\/langs.json" ], "matches": [ "*:\/\/*.linkedin.com\/*" ] } ] } |