Newsfeed Filter

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

Co je Newsfeed Filter?

Newsfeed Filter je rozšíření Chrome vyvinuté the man-ager, a jeho hlavní funkcí je „Removes ads and promoted content from fb's newsfeed. Also adds some responsiveness to it!“.

Snímky obrazovky rozšíření

screenshot
screenshot
screenshot

Stáhnout soubor CRX rozšíření Newsfeed Filter

Stáhněte si soubory rozšíření Newsfeed Filter ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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.                    

Základní Informace o Rozšíření

Název Newsfeed Filter Newsfeed Filter
ID ncacdnoibkciekbplckcblpnaefacpfm
Oficiální URL https://chromewebstore.google.com/detail/newsfeed-filter/ncacdnoibkciekbplckcblpnaefacpfm
Popis Removes ads and promoted content from fb's newsfeed. Also adds some responsiveness to it!
Velikost souboru 62.81 KB
Počet instalací 35
Aktuální Verze 3.5.4
Poslední Aktualizace 2018-10-10
Datum Vydání 2018-10-10
Hodnocení 4.00/5 Celkem 4 Hodnocení
Vývojář the man-ager
E-mail [email protected]
Typ Platby free
Podporované Jazyky 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"
        }
    ]
}