Feed Cleaner
Clean your social network news feed from suggested posts and ads
Feed Cleaner là gì?
Feed Cleaner là một tiện ích mở rộng Chrome được phát triển bởi Arik W, và tính năng chính của nó là "Clean your social network news feed from suggested posts and ads".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Feed Cleaner
Tải xuống các tệp mở rộng Feed Cleaner dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
Keep those suggested posts and ads out of your social network news feed. Which social network? Say "Phase-book" out loud 3 times. The suggested posts and ads will collapse into a minimal row, allowing you to take a peek with a single click. Your privacy is our top priority. We do not send any data to any server. Period. News Feed Cleaner - Take control on your social network.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | |
ID | jdmiahadpnljimfcnfaebjggbfkjkgan |
URL Chính Thức | https://chrome.google.com/webstore/detail/feed-cleaner/jdmiahadpnljimfcnfaebjggbfkjkgan |
Mô tả | Clean your social network news feed from suggested posts and ads |
Kích Thước Tệp | 82.2 KB |
Số Lần Cài Đặt | 68 |
Phiên Bản Hiện Tại | 1.0.1 |
Cập Nhật Lần Cuối | 2017-05-08 |
Ngày Phát Hành | 2017-05-08 |
Đánh Giá | 5.00/5 Tổng số 2 Đánh Giá |
Nhà Phát Triển | Arik W |
[email protected] | |
Loại Thanh Toán | free |
Ngôn Ngữ Được Hỗ Trợ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Feed Cleaner", "manifest_version": 2, "version": "1.0.1", "content_scripts": [ { "matches": [ "*:\/\/www.facebook.com\/*" ], "js": [ "vendor\/jquery-1.11.3.min.js", "defaults.js", "main.js" ], "run_at": "document_start", "all_frames": false, "css": [] } ], "icons": { "16": "images\/icon16.png", "32": "images\/icon32.png", "48": "images\/icon48.png", "64": "images\/icon64.png", "128": "images\/icon128.png", "256": "images\/icon256.png" }, "browser_action": { "default_icon": "images\/icon48.png" }, "options_ui": { "page": "options.html", "chrome_style": true }, "background": { "scripts": [ "defaults.js", "background.js" ] }, "permissions": [ "storage" ], "incognito": "split", "web_accessible_resources": [ "images\/icon256.png", "images\/chevron-d.png", "images\/chevron-r.png" ], "description": "Clean your social network news feed from suggested posts and ads" } |