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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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
공식 URL 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"
        }
    ]
}