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によって開発されたChromeの拡張機能で、その主な機能は「This extension allows you to control what you see on Facebook, You can restrict Images, Ads, Videos, Albums and Links」です。

拡張機能のスクリーンショット

My Newsfeed拡張機能のCRXファイルをダウンロード

My Newsfeed拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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
Eメール [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"
    }
}