Hide Promoted Jobs
Hides promoted job postings on LinkedIn's job search pages.
Cos'è Hide Promoted Jobs?
Hide Promoted Jobs è un'estensione di Chrome sviluppata da Fabricio Duarte, e la sua funzione principale è "Hides promoted job postings on LinkedIn's job search pages.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Hide Promoted Jobs
Scarica i file di estensione Hide Promoted Jobs in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
No more getting distracted by job postings that don't have any of the searched keywords on LinkedIn, enhance the job seeking experience!
Informazioni di Base sull'Estensione
Nome | Hide Promoted Jobs |
ID | bmilkimafelnhekidknkamkhkbeciijg |
URL Ufficiale | https://chromewebstore.google.com/detail/hide-promoted-jobs/bmilkimafelnhekidknkamkhkbeciijg |
Descrizione | Hides promoted job postings on LinkedIn's job search pages. |
Dimensione del File | 13.14 KB |
Conteggio Installazioni | 2,128 |
Versione Corrente | 1.3 |
Ultimo Aggiornamento | 2023-02-01 |
Data di Pubblicazione | 2023-01-21 |
Valutazione | 4.89/5 Totale 19 Valutazioni |
Sviluppatore | Fabricio Duarte |
[email protected] | |
Tipo di Pagamento | free |
URL della Pagina di Aiuto | https://github.com/winterhazel/hide-promoted-jobs |
Lingue Supportate | 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\/*" ] } ] } |