Newsfeed Filter
Removes ads and promoted content from fb's newsfeed. Also adds some responsiveness to it!
Newsfeed Filterคืออะไร?
Newsfeed Filter เป็นส่วนขยายของ Chrome ที่พัฒนาโดย the man-ager และคุณลักษณะหลักของมันคือ "Removes ads and promoted content from fb's newsfeed. Also adds some responsiveness to it!"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Newsfeed Filter
ดาวน์โหลดไฟล์ส่วนขยาย Newsfeed Filter ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
I know, fb's clever algorithms can make educated guesses to promote content in your newsfeed, that you like even more than your friend's posts. But you still open fb to see your friend's posts, not ads. Isn't it a shame to waste any amount of time, trying to discern original from promoted content? Wouldn't you like a more distractless environment? Add Newsfeed Filter and watch all distractions gone - or just the ones you don't like NOTE: The only data this extension stores are your choices regarding its options. They are stored on a browser related database and I have no access on them. No data from your actual facebook content are stored or sent anywhere.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Newsfeed Filter |
ID | ncacdnoibkciekbplckcblpnaefacpfm |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/newsfeed-filter/ncacdnoibkciekbplckcblpnaefacpfm |
คำอธิบาย | Removes ads and promoted content from fb's newsfeed. Also adds some responsiveness to it! |
ขนาดไฟล์ | 62.81 KB |
จำนวนการติดตั้ง | 35 |
เวอร์ชันปัจจุบัน | 3.5.4 |
อัปเดตครั้งล่าสุด | 2018-10-10 |
วันที่เผยแพร่ | 2018-10-10 |
คะแนน | 4.00/5 รวมทั้งหมด 4 คะแนน |
ผู้พัฒนา | the man-ager |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Newsfeed Filter", "short_name": "Newsfilter", "description": "Removes ads and promoted content from fb's newsfeed. Also adds some responsiveness to it!", "version": "3.5.4", "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" }, "browser_action": { "default_icon": "icon.png", "default_popup": "popup.html" }, "permissions": [ "storage" ], "content_scripts": [ { "matches": [ "*:\/\/*.facebook.com\/*" ], "js": [ "jquery-3.1.1.min.js", "worker.js" ], "run_at": "document_end" } ] } |