My Newsfeed
This extension allows you to control what you see on Facebook, You can restrict Images, Ads, Videos, Albums and Links
My Newsfeed là gì?
My Newsfeed là một tiện ích mở rộng Chrome được phát triển bởi https://poordeveloper.com, và tính năng chính của nó là "This extension allows you to control what you see on Facebook, You can restrict Images, Ads, Videos, Albums and Links".
Ả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 My Newsfeed
Tải xuống các tệp mở rộng My Newsfeed 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
Ever wanted to remove Sponsored Content from your Facebook Feed? Well, here is a solution with lots of added features. You can specify which stuff to block from your Facebook just by checking the checkboxes. Currently, you can block Images, Albums, Videos, Ads and Shared Links. GIT: https://github.com/AhmadHassanAwan/my-newsfeed Webpage: http://poordeveloper.com/my-newsfeed/ Contact me @ [email protected]
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | My Newsfeed |
ID | afknifooipbmhinfgeipenkjfdlncihg |
URL Chính Thức | https://chromewebstore.google.com/detail/my-newsfeed/afknifooipbmhinfgeipenkjfdlncihg |
Mô tả | This extension allows you to control what you see on Facebook, You can restrict Images, Ads, Videos, Albums and Links |
Kích Thước Tệp | 85.86 KB |
Số Lần Cài Đặt | 40 |
Phiên Bản Hiện Tại | 1 |
Cập Nhật Lần Cuối | 2017-05-18 |
Ngày Phát Hành | 2017-05-18 |
Nhà Phát Triển | https://poordeveloper.com |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | http://poordeveloper.com/my-newsfeed/ |
Ngôn Ngữ Được Hỗ Trợ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "My Newsfeed", "short_name": "My Newsfeed", "version": "1", "manifest_version": 2, "description": "This extension allows you to control what you see on Facebook, You can restrict Images, Ads, Videos, Albums and Links", "icons": { "128": "images\/icon-128.png" }, "default_locale": "en", "background": { "scripts": [ "scripts\/jquery-2.1.4.js", "scripts\/background.js" ] }, "permissions": [ "tabs", "http:\/\/*\/*", "https:\/\/*\/*", "background", "storage" ], "content_scripts": [ { "matches": [ "https:\/\/www.facebook.com\/*" ], "js": [ "scripts\/jquery-2.1.4.js", "scripts\/contentscript.js" ], "run_at": "document_end", "all_frames": false } ], "browser_action": { "default_icon": [], "default_title": "my newsfeed", "default_popup": "popup.html" } } |