Zelos - AdBlock for LinkedIn

Block ads & promotions posted on LinkedIn. Filter through posted content.

什麼是Zelos - AdBlock for LinkedIn?

Zelos - AdBlock for LinkedIn是由brleext開發的Chrome擴展程式,該擴展的主要功能是“Block ads & promotions posted on LinkedIn. Filter through posted content.”。

擴展截圖

screenshot
screenshot
screenshot
screenshot

下載Zelos - AdBlock for LinkedIn擴展crx文件

下載Zelos - AdBlock for LinkedIn擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        Block ads & promotions posted on LinkedIn. Filter through posted content.

Zelos is a chrome extension that runs in the background and blocks out "Promoted" posts on LinkedIn. 1 in 10 posts on the LinkedIn feed are "promoted," and these posts distract the user from other opportunities on LinkedIn. We are providing a free service to remove these posts for the user. 

Not only does Zelos filter out promoted posts. But Zelos provides a widget for the user to view the total number of promoted posts blocked on LinkedIn. This widget helps the user gauge the effectiveness of the tool.

Version 1.0
- LinkedIn filter for "Promoted" posts.
- Zelos widget for keeping track of total number of posts blocked.

Future Updates
- Automatic categorization of posts on LinkedIn.
- Premium feature to filter out posts by Celebratory, Opinion, Opportunity, Storytime, etc.

Permissions:
- storage: required for communicating to the widget the number of blocked posts from the script that is blocking posts on LinkedIn.                    

擴展基本資訊

名稱 Zelos - AdBlock for LinkedIn Zelos - AdBlock for LinkedIn
ID mldpdenhfnkclmmobcdnbgoojiilphhj
官方網址 https://chromewebstore.google.com/detail/zelos-adblock-for-linkedi/mldpdenhfnkclmmobcdnbgoojiilphhj
簡介 Block ads & promotions posted on LinkedIn. Filter through posted content.
檔案大小 638 KB
安裝次數 129
目前版本 1.01
更新時間 2021-04-13
上架時間 2021-04-12
評分 2.33/5 共 6 次評分
開發者 brleext
電子郵箱 [email protected]
付費類型 free
支援的語言 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Zelos - AdBlock for LinkedIn",
    "description": "Block ads & promotions posted on LinkedIn. Filter through posted content.",
    "version": "1.01",
    "browser_action": {
        "default_icon": "icon.png",
        "default_popup": "index.html",
        "default_title": "Zelos"
    },
    "permissions": [
        "storage"
    ],
    "icons": {
        "16": "icon.png",
        "48": "icon.png",
        "128": "icon.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.linkedin.com\/*"
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_end"
        }
    ]
}