My Newsfeed

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

My Newsfeed क्या है?

My Newsfeed https://poordeveloper.com द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "This extension allows you to control what you see on Facebook, You can restrict Images, Ads, Videos, Albums and Links"।

एक्सटेंशन स्क्रीनशॉट्स

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में My Newsfeed एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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]                    

एक्सटेंशन की मूल जानकारी

नाम My Newsfeed My Newsfeed
ID afknifooipbmhinfgeipenkjfdlncihg
आधिकारिक URL https://chromewebstore.google.com/detail/my-newsfeed/afknifooipbmhinfgeipenkjfdlncihg
विवरण This extension allows you to control what you see on Facebook, You can restrict Images, Ads, Videos, Albums and Links
फ़ाइल का आकार 85.86 KB
स्थापना संख्या 40
वर्तमान संस्करण 1
अंतिम अपडेट 2017-05-18
प्रकाशन तिथि 2017-05-18
डेवलपर https://poordeveloper.com
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट http://poordeveloper.com/my-newsfeed/
समर्थित भाषाएँ 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"
    }
}