CoronaBLOCK for Facebook

Take a break from Facebook posts related to COVID-19

Qu'est-ce que CoronaBLOCK for Facebook ?

CoronaBLOCK for Facebook est une extension Chrome développée par https://aldiduzha.com/projects/coronablock, et sa fonction principale est "Take a break from Facebook posts related to COVID-19".

Captures d'Écran de l'Extension

screenshot
screenshot
screenshot
screenshot

Télécharger le fichier CRX de l'extension CoronaBLOCK for Facebook

Téléchargez les fichiers d'extension CoronaBLOCK for Facebook 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

                        This project is open source and is available on Github.
https://github.com/aldi/coronablock

Take a break from Coronavirus/COVID-19 related Facebook posts. 
CoronaBLOCK helps you block effectively Facebook posts based on a curated list of hand-picked keywords related to coronavirus.
Note: It works only οn Facebook.

How it works:
CoronaBLOCK scans in the background your Facebook feed for COVID-19 related posts and comments and removes them, based on a curated list of related keywords.

Features:
-	Fast keyword search in the background without delays.
-       Fresh and Clean UI. Plain and Simple.
-	ON/OFF Switch. Disable it or enable it whenever you feel to.
-	See how many COVID-19 related posts CoronaBLOCK has blocked.
-       Supports both classic and new Facebook layout.

Enjoy and don't forget to refresh the page before using it!                    

Informations de Base sur l'Extension

Nom CoronaBLOCK for Facebook CoronaBLOCK for Facebook
ID mmlaobnmgfaidfhebeijbeehkdibpiae
URL Officiel https://chromewebstore.google.com/detail/coronablock-for-facebook/mmlaobnmgfaidfhebeijbeehkdibpiae
Description Take a break from Facebook posts related to COVID-19
Taille du Fichier 374 KB
Nombre d'Installations 49
Version Actuelle 1.2.1
Dernière Mise à Jour 2022-04-03
Date de Publication 2020-04-21
Évaluation 5.00/5 Total 5 Évaluations
Développeur https://aldiduzha.com/projects/coronablock
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://aldiduzha.com/projects/coronablock
URL de la Page d'Aide https://aldiduzha.com/projects/coronablock
Langues Prises en Charge en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "CoronaBLOCK for Facebook",
    "description": "Take a break from Facebook posts related to COVID-19",
    "author": "Aldi Duzha",
    "version": "1.2.1",
    "manifest_version": 2,
    "permissions": [
        "*:\/\/*.facebook.com\/*",
        "activeTab",
        "storage"
    ],
    "browser_action": {
        "default_icon": "images\/icon48.png",
        "default_popup": "popup.html"
    },
    "icons": {
        "16": "images\/icon16.png",
        "48": "images\/icon48.png",
        "128": "images\/icon128.png"
    },
    "background": {
        "scripts": [
            "js\/background.js"
        ],
        "persistent": true
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.facebook.com\/*"
            ],
            "run_at": "document_start",
            "js": [
                "js\/filters.js"
            ]
        }
    ]
}