FaceBlock

Blocks 'Sponsored ads' (and other annoying things) inserted into the facebook newsfeed

Τι είναι το FaceBlock;

Το FaceBlock είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον http://faceblock.fnostro.com, και η κύρια λειτουργία του είναι "Blocks 'Sponsored ads' (and other annoying things) inserted into the facebook newsfeed".

Στιγμιότυπα Επέκτασης

screenshot

Λήψη αρχείου CRX της επέκτασης FaceBlock

Λήψη αρχείων επέκτασης FaceBlock σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        FB redesigned their newsfeed and I've decided to not be all things to all people so I'm just hiding things that annoy me personally. I'll replace the code on Git eventually so you can make your own mods.

As of 21 May 2021 this extension:  
Hides FB 'algorithmically' selected content:
 * "Sponsored Ads"
 * "Suggested for You"
 * "Suggested Page(s)"
 * "People You May Know"

Collapses user generated content:
 * Cover photo changes
 * Shared Memories/Memory Related
 * Life Events
 * Check-ins/Meet-ups.  This is surprisingly diverse to catch
 * Friend donations
 * Birthday and related
 * Certain ads you get to see because a friend left a comment on one

Collapsed "User generated content" appears with a gray or red dot on the left edge of the newsfeed. Hover over the dot to reveal the content temporarily

Hidden content (anything generated by FB) is not revealable. But if you *really* need to you can use Chrome's dev tools to inspect the page.

Update May 21, 2021
=================
 * Sometimes friends make donations.  FB makes them public. This extension collapses them.
 * Added collapsing of additional Check-In style "Meet-ups." This content is revealable.

Update 13-May-2021
=================
* Added blocking of "Suggested Page(s)" content
* Blocking ads you get to see because a friend left a comment on one.

Update 13-Apr-2021
================
* Bug Fix. Search logic was letting some suggested content through. Fixed.
* Added blocking of "People You May Know" content

Update 06-Apr-2021
================
* Simplified the code.  No more Options and as such, fewer chrome manifest permissions.
* Just blocks Sponsored Ads and "Suggested for You" content                    

Βασικές Πληροφορίες Επέκτασης

Όνομα FaceBlock FaceBlock
ID elfjdommhjddccnkaddkmbkmndmgennl
Επίσημο URL https://chrome.google.com/webstore/detail/faceblock/elfjdommhjddccnkaddkmbkmndmgennl
Περιγραφή Blocks 'Sponsored ads' (and other annoying things) inserted into the facebook newsfeed
Μέγεθος Αρχείου 10.63 KB
Αριθμός Εγκαταστάσεων 819
Τρέχουσα Έκδοση 20.21.5.21
Τελευταία Ενημέρωση 2021-05-22
Ημερομηνία Δημοσίευσης 2021-04-10
Αξιολόγηση 4.26/5 Συνολικά 23 Αξιολογήσεις
Προγραμματιστής http://faceblock.fnostro.com
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης http://faceblock.fnostro.com/
Υποστηριζόμενες Γλώσσες en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "FaceBlock",
    "short_name": "FAB",
    "description": "Blocks 'Sponsored ads' (and other annoying things) inserted into the facebook newsfeed",
    "version": "20.21.5.21",
    "author": "Frank Nostro",
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "browser_action": {
        "default_icon": "FaceBlock.png"
    },
    "content_scripts": [
        {
            "all_frames": false,
            "matches": [
                "https:\/\/www.facebook.com\/*"
            ],
            "js": [
                "FaceBlock.js"
            ],
            "run_at": "document_end"
        }
    ],
    "icons": {
        "128": "FaceBlock.png"
    },
    "manifest_version": 2,
    "minimum_chrome_version": "27",
    "permissions": [
        "background",
        "https:\/\/*.facebook.com\/*"
    ]
}