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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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"
    }
}