Facebook Feed Limiter
Limits your Facebook News Feed to roughly 10 items, which is something that you secretly always wanted.
Facebook Feed Limiterคืออะไร?
Facebook Feed Limiter เป็นส่วนขยายของ Chrome ที่พัฒนาโดย matija.marohnic และคุณลักษณะหลักของมันคือ "Limits your Facebook News Feed to roughly 10 items, which is something that you secretly always wanted."
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Facebook Feed Limiter
ดาวน์โหลดไฟล์ส่วนขยาย Facebook Feed Limiter ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Have you ever lost 4 hours scrolling through your Facebook news feed? There's a reason they call it infinite scroll. his magnificent Chrome extension limits it to 10 items, which is something you secretly always wanted. This only limits the news feed, not the feed of a specific profile or a custom feed. This extension consists of 5 lines of CSS based on the current markup on Facebook, which will occasionally change, but I'll do my best to catch up with the changes.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | |
ID | ojjjmcajplpdmodbfdbehknejjdafnem |
URL อย่างเป็นทางการ | https://chrome.google.com/webstore/detail/facebook-feed-limiter/ojjjmcajplpdmodbfdbehknejjdafnem |
คำอธิบาย | Limits your Facebook News Feed to roughly 10 items, which is something that you secretly always wanted. |
ขนาดไฟล์ | 4.85 KB |
จำนวนการติดตั้ง | 29 |
เวอร์ชันปัจจุบัน | 0.0.2 |
อัปเดตครั้งล่าสุด | 2016-04-24 |
วันที่เผยแพร่ | 2016-04-24 |
คะแนน | 5.00/5 รวมทั้งหมด 1 คะแนน |
ผู้พัฒนา | matija.marohnic |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://github.com/silvenon/fb-feed-limiter |
URL หน้าช่วยเหลือ | https://github.com/silvenon/fb-feed-limiter |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Facebook Feed Limiter", "description": "Limits your Facebook News Feed to roughly 10 items, which is something that you secretly always wanted.", "version": "0.0.2", "page_action": { "default_icon": "icon.png" }, "content_scripts": [ { "matches": [ "https:\/\/www.facebook.com\/*" ], "css": [ "limiter.css" ], "js": [] } ], "permissions": [ "http:\/\/*.facebook.com\/", "https:\/\/*.facebook.com\/" ] } |