LinkedIn Sponsored Post Remover
Focus on relevant posts by removing promoted job posts on LinkedIn search page
LinkedIn Sponsored Post Remover란 무엇입니까?
LinkedIn Sponsored Post Remover은(는) https://yafkari.dev에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Focus on relevant posts by removing promoted job posts on LinkedIn search page"입니다.
확장 프로그램 스크린샷
LinkedIn Sponsored Post Remover 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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.
확장 프로그램 기본 정보
이름 | LinkedIn Sponsored Post Remover |
ID | cpnehbjfofjpmbmjnikjbohdblhmlnpf |
공식 URL | https://chrome.google.com/webstore/detail/linkedin-sponsored-post-r/cpnehbjfofjpmbmjnikjbohdblhmlnpf |
설명 | Focus on relevant posts by removing promoted job posts on LinkedIn search page |
파일 크기 | 71.74 KB |
설치 횟수 | 118 |
현재 버전 | 2.3 |
최근 업데이트 | 2023-05-27 |
출시 날짜 | 2022-02-01 |
평점 | 3.40/5 총 5 개의 평점 |
개발자 | https://yafkari.dev |
이메일 | [email protected] |
결제 유형 | free |
지원되는 언어 | 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" ] } |