Hide Promoted Jobs
Hides promoted job postings on LinkedIn's job search pages.
Wat is Hide Promoted Jobs?
Hide Promoted Jobs is een Chrome-extensie ontwikkeld door Fabricio Duarte, en de belangrijkste functie is "Hides promoted job postings on LinkedIn's job search pages.".
Extensie Screenshots
Download het CRX-bestand van de extensie Hide Promoted Jobs
Download Hide Promoted Jobs-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
No more getting distracted by job postings that don't have any of the searched keywords on LinkedIn, enhance the job seeking experience!
Basisinformatie over de Extensie
Naam | Hide Promoted Jobs |
ID | bmilkimafelnhekidknkamkhkbeciijg |
Officiële URL | https://chromewebstore.google.com/detail/hide-promoted-jobs/bmilkimafelnhekidknkamkhkbeciijg |
Beschrijving | Hides promoted job postings on LinkedIn's job search pages. |
Bestandsgrootte | 13.14 KB |
Aantal Installaties | 2,128 |
Huidige Versie | 1.3 |
Laatst Bijgewerkt | 2023-02-01 |
Publicatiedatum | 2023-01-21 |
Beoordeling | 4.89/5 Totaal 19 Beoordelingen |
Ontwikkelaar | Fabricio Duarte |
[email protected] | |
Betalingswijze | free |
Help Pagina-URL | https://github.com/winterhazel/hide-promoted-jobs |
Ondersteunde Talen | 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\/*" ] } ] } |