Newsfeed Filter

Removes ads and promoted content from fb's newsfeed. Also adds some responsiveness to it!

Τι είναι το Newsfeed Filter;

Το Newsfeed Filter είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον the man-ager, και η κύρια λειτουργία του είναι "Removes ads and promoted content from fb's newsfeed. Also adds some responsiveness to it!".

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

screenshot
screenshot
screenshot

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

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

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

                        I know, fb's clever algorithms can make educated guesses to promote content in your newsfeed, that you like even more than your friend's posts. But you still open fb to see your friend's posts, not ads.

Isn't it a shame to waste any amount of time, trying to discern original from promoted content? Wouldn't you like a more distractless environment?

Add Newsfeed Filter and watch all distractions gone - or just the ones you don't like

NOTE: The only data this extension stores are your choices regarding its options. They are stored on a browser related database and I have no access on them. No data from your actual facebook content are stored or sent anywhere.                    

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

Όνομα Newsfeed Filter Newsfeed Filter
ID ncacdnoibkciekbplckcblpnaefacpfm
Επίσημο URL https://chromewebstore.google.com/detail/newsfeed-filter/ncacdnoibkciekbplckcblpnaefacpfm
Περιγραφή Removes ads and promoted content from fb's newsfeed. Also adds some responsiveness to it!
Μέγεθος Αρχείου 62.81 KB
Αριθμός Εγκαταστάσεων 35
Τρέχουσα Έκδοση 3.5.4
Τελευταία Ενημέρωση 2018-10-10
Ημερομηνία Δημοσίευσης 2018-10-10
Αξιολόγηση 4.00/5 Συνολικά 4 Αξιολογήσεις
Προγραμματιστής the man-ager
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Newsfeed Filter",
    "short_name": "Newsfilter",
    "description": "Removes ads and promoted content from fb's newsfeed. Also adds some responsiveness to it!",
    "version": "3.5.4",
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "browser_action": {
        "default_icon": "icon.png",
        "default_popup": "popup.html"
    },
    "permissions": [
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.facebook.com\/*"
            ],
            "js": [
                "jquery-3.1.1.min.js",
                "worker.js"
            ],
            "run_at": "document_end"
        }
    ]
}