Zelos - AdBlock for LinkedIn

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

Qu'est-ce que Zelos - AdBlock for LinkedIn ?

Zelos - AdBlock for LinkedIn est une extension Chrome développée par brleext, et sa fonction principale est "Block ads & promotions posted on LinkedIn. Filter through posted content.".

Captures d'Écran de l'Extension

screenshot
screenshot
screenshot
screenshot

Télécharger le fichier CRX de l'extension Zelos - AdBlock for LinkedIn

Téléchargez les fichiers d'extension Zelos - AdBlock for LinkedIn au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom Zelos - AdBlock for LinkedIn Zelos - AdBlock for LinkedIn
ID mldpdenhfnkclmmobcdnbgoojiilphhj
URL Officiel https://chromewebstore.google.com/detail/zelos-adblock-for-linkedi/mldpdenhfnkclmmobcdnbgoojiilphhj
Description Block ads & promotions posted on LinkedIn. Filter through posted content.
Taille du Fichier 638 KB
Nombre d'Installations 129
Version Actuelle 1.01
Dernière Mise à Jour 2021-04-13
Date de Publication 2021-04-12
Évaluation 2.33/5 Total 6 Évaluations
Développeur brleext
Email [email protected]
Type de Paiement free
Langues Prises en Charge 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"
        }
    ]
}