Feed Filter
Feed Filter helps you to filter your facebook feed with posts based on the keywords you enter inside the extension. It can be used…
Feed Filter là gì?
Feed Filter là một tiện ích mở rộng Chrome được phát triển bởi Maker, và tính năng chính của nó là "Feed Filter helps you to filter your facebook feed with posts based on the keywords you enter inside the extension. It can be used…".
Ả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 Filter
Tải xuống các tệp mở rộng Feed Filter 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
Feed Filter helps you to filter your facebook feed with posts based on the keywords you enter inside the extension. It can be used to delete the post with specific keywords you want or it can show you a post with the keywords you want to see.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | |
ID | ajhegeembcahfofkkhafolgpjgnimnib |
URL Chính Thức | https://chromewebstore.google.com/detail/feed-filter/ajhegeembcahfofkkhafolgpjgnimnib |
Mô tả | Feed Filter helps you to filter your facebook feed with posts based on the keywords you enter inside the extension. It can be used… |
Kích Thước Tệp | 469 KB |
Số Lần Cài Đặt | 81 |
Phiên Bản Hiện Tại | 1.0.1 |
Cập Nhật Lần Cuối | 2021-05-11 |
Ngày Phát Hành | 2021-05-11 |
Nhà Phát Triển | Maker |
[email protected] | |
Loại Thanh Toán | free |
URL Trang Chính Sách Bảo Mật | https://automatics.one/privacy |
Ngôn Ngữ Được Hỗ Trợ | en |
manifest.json | |
{ "name": "Feed Filter", "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "version": "1.0.1", "description": "", "manifest_version": 2, "incognito": "split", "icons": { "128": "icons\/128.png" }, "browser_action": { "default_icon": "icons\/128.png", "default_popup": "popup\/popup.html" }, "background": { "persistent": true, "page": "background\/background.html" }, "permissions": [ "storage", "cookies", "notifications", "*:\/\/*.facebook.com\/*" ], "content_scripts": [ { "run_at": "document_end", "matches": [ "*:\/\/*.facebook.com\/" ], "js": [ "scripts\/content_script.js", "scripts\/jquery.js" ] } ] } |