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”。

擴展截圖

screenshot
screenshot

下載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 LinkedIn Sponsored Post Remover
ID cpnehbjfofjpmbmjnikjbohdblhmlnpf
官方網址 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"
    ]
}