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 เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://poordeveloper.com และคุณลักษณะหลักของมันคือ "This extension allows you to control what you see on Facebook, You can restrict Images, Ads, Videos, Albums and Links"

ภาพหน้าจอของส่วนขยาย

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย My Newsfeed

ดาวน์โหลดไฟล์ส่วนขยาย 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
อีเมล [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"
    }
}