My Newsfeed

This extension allows you to control what you see on Facebook, You can restrict Images, Ads, Videos, Albums and Links

Wat is My Newsfeed?

My Newsfeed is een Chrome-extensie ontwikkeld door https://poordeveloper.com, en de belangrijkste functie is "This extension allows you to control what you see on Facebook, You can restrict Images, Ads, Videos, Albums and Links".

Extensie Screenshots

Download het CRX-bestand van de extensie My Newsfeed

Download My Newsfeed-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        Ever wanted to remove Sponsored Content from your Facebook Feed?

Well, here is a solution with lots of added features.

You can specify which stuff to block from your Facebook just by checking the checkboxes.

Currently, you can block Images, Albums, Videos, Ads and Shared Links.

GIT: https://github.com/AhmadHassanAwan/my-newsfeed

Webpage: http://poordeveloper.com/my-newsfeed/

Contact me @ [email protected]                    

Basisinformatie over de Extensie

Naam My Newsfeed My Newsfeed
ID afknifooipbmhinfgeipenkjfdlncihg
Officiële URL https://chromewebstore.google.com/detail/my-newsfeed/afknifooipbmhinfgeipenkjfdlncihg
Beschrijving This extension allows you to control what you see on Facebook, You can restrict Images, Ads, Videos, Albums and Links
Bestandsgrootte 85.86 KB
Aantal Installaties 40
Huidige Versie 1
Laatst Bijgewerkt 2017-05-18
Publicatiedatum 2017-05-18
Ontwikkelaar https://poordeveloper.com
E-mail [email protected]
Betalingswijze free
Extensiewebsite http://poordeveloper.com/my-newsfeed/
Ondersteunde Talen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "My Newsfeed",
    "short_name": "My Newsfeed",
    "version": "1",
    "manifest_version": 2,
    "description": "This extension allows you to control what you see on Facebook, You can restrict Images, Ads, Videos, Albums and Links",
    "icons": {
        "128": "images\/icon-128.png"
    },
    "default_locale": "en",
    "background": {
        "scripts": [
            "scripts\/jquery-2.1.4.js",
            "scripts\/background.js"
        ]
    },
    "permissions": [
        "tabs",
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        "background",
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.facebook.com\/*"
            ],
            "js": [
                "scripts\/jquery-2.1.4.js",
                "scripts\/contentscript.js"
            ],
            "run_at": "document_end",
            "all_frames": false
        }
    ],
    "browser_action": {
        "default_icon": [],
        "default_title": "my newsfeed",
        "default_popup": "popup.html"
    }
}