LinkedIn Sponsored Post Remover
Focus on relevant posts by removing promoted job posts on LinkedIn search page
Co to jest LinkedIn Sponsored Post Remover?
LinkedIn Sponsored Post Remover to rozszerzenie Chrome opracowane przez https://yafkari.dev, a jego główną funkcją jest „Focus on relevant posts by removing promoted job posts on LinkedIn search page”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia LinkedIn Sponsored Post Remover
Pobierz pliki rozszerzeń LinkedIn Sponsored Post Remover w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
Linkedin Sponsored Post Remover is a simple chrome extension that allows you to see only the job posts that are not promoted on LinkedIn. Therefore the application only works on the job search pages on linkedin. Stay tuned for additional features, and don't hesitate to request features or report bugs.
Podstawowe informacje o rozszerzeniu
Nazwa | LinkedIn Sponsored Post Remover |
ID | cpnehbjfofjpmbmjnikjbohdblhmlnpf |
Oficjalny URL | https://chrome.google.com/webstore/detail/linkedin-sponsored-post-r/cpnehbjfofjpmbmjnikjbohdblhmlnpf |
Opis | Focus on relevant posts by removing promoted job posts on LinkedIn search page |
Rozmiar pliku | 71.74 KB |
Liczba instalacji | 118 |
Aktualna Wersja | 2.3 |
Ostatnia Aktualizacja | 2023-05-27 |
Data Publikacji | 2022-02-01 |
Ocena | 3.40/5 Łącznie 5 Oceny |
Deweloper | https://yafkari.dev |
[email protected] | |
Typ Płatności | free |
Obsługiwane Języki | en-GB |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "short_name": "LinkedIn Sponsored Post Remover", "name": "LinkedIn Sponsored Post Remover", "description": "Focus on relevant posts by removing promoted job posts on LinkedIn search page", "version": "2.3", "manifest_version": 3, "action": { "default_popup": "index.html", "default_icon": { "16": "\/images\/16x16.png", "32": "\/images\/32x32.png", "48": "\/images\/48x48.png", "128": "\/images\/128x128.png" } }, "icons": { "16": "\/images\/16x16.png", "32": "\/images\/32x32.png", "48": "\/images\/48x48.png", "128": "\/images\/128x128.png" }, "content_scripts": [ { "matches": [ "*:\/\/*.linkedin.com\/jobs\/search\/" ], "js": [ "content_script.js" ] } ], "background": { "service_worker": "background.js" }, "host_permissions": [ "*:\/\/*.linkedin.com\/jobs\/search\/" ], "permissions": [ "storage", "activeTab", "scripting" ] } |