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ファイルをダウンロード
LinkedIn Sponsored Post Remover拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
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 |
Eメール | [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" ] } |