News Feed Blocker
The Newsfeed Blocker blocks the newsfeed and stories section of the facebook app. It is well-documented that the infinite…
News Feed Blockerคืออะไร?
News Feed Blocker เป็นส่วนขยายของ Chrome ที่พัฒนาโดย jigarp12892 และคุณลักษณะหลักของมันคือ "The Newsfeed Blocker blocks the newsfeed and stories section of the facebook app. It is well-documented that the infinite…"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย News Feed Blocker
ดาวน์โหลดไฟล์ส่วนขยาย News Feed Blocker ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
The Newsfeed Blocker blocks the newsfeed and stories section of the facebook app. It is well-documented that the infinite scrolling newsfeed is a product of the attention-economy : The more a user keeps scrolling, the more ad-revenue is generated. The automatically curated newsfeed is designed to put the control back in the user's hand. This simple extension blocks the newsfeed so users can continue to access facebook for its useful features : Marketplace, direct messaging, groups, etc. To block newsfeed and stories : 1. Install the extension 2. Open facebook on your browser 3. Click on the "nfb" button on the tool bar. To unblock the newsfeed and stories: 1. Click the button again.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | News Feed Blocker |
ID | njaedcddcbaonmeabladggefnaclcadp |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/news-feed-blocker/njaedcddcbaonmeabladggefnaclcadp |
คำอธิบาย | The Newsfeed Blocker blocks the newsfeed and stories section of the facebook app. It is well-documented that the infinite… |
ขนาดไฟล์ | 37.02 KB |
จำนวนการติดตั้ง | 71 |
เวอร์ชันปัจจุบัน | 0.1 |
อัปเดตครั้งล่าสุด | 2021-04-19 |
วันที่เผยแพร่ | 2021-04-18 |
ผู้พัฒนา | jigarp12892 |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
ภาษาที่รองรับ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "News Feed Blocker", "version": "0.1", "content_scripts": [ { "matches": [ "https:\/\/www.facebook.com\/*" ], "js": [ "jquery-2.2.4.min.js", "content.js" ] } ], "background": { "scripts": [ "background.js" ] }, "browser_action": [], "icons": { "16": "NFB16.png", "48": "NFB48.png", "128": "NFB128.png" } } |