Forgetbook
Automatically delete all of your posts, likes, and comments from Facebook; without removing any friends or leaving any groups.
Forgetbook là gì?
Forgetbook là một tiện ích mở rộng Chrome được phát triển bởi https://forgetbook.com, và tính năng chính của nó là "Automatically delete all of your posts, likes, and comments from Facebook; without removing any friends or leaving any groups.".
Ả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 Forgetbook
Tải xuống các tệp mở rộng Forgetbook 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
You can even choose what to do with your photos, whether you'd like them left as they are, hidden from your timeline, moved to the archive, or moved to the trash. Want to see Forgetbook in action? We made you a Demo Video!: https://www.youtube.com/watch?v=M8IIheVMCCI Forgetbook doesn't save any of your information. It works entirely inside of your chrome browser, clicking the buttons on your activity log the same way that you do. We don't even have an external server! If you'd like to see the code for youself, check it out on github: https://github.com/forgetbookapp/forgetbook We hope forgetbook saves you a lot of time. If you like it you can support the project at paypal.me/forgetbook Have feedback for us? Email us your suggestions and questions at [email protected] www.forgetbook.com
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Forgetbook |
ID | apoocpiplcindjpbhaaafbobbjcfgolf |
URL Chính Thức | https://chromewebstore.google.com/detail/forgetbook/apoocpiplcindjpbhaaafbobbjcfgolf |
Mô tả | Automatically delete all of your posts, likes, and comments from Facebook; without removing any friends or leaving any groups. |
Kích Thước Tệp | 21.79 KB |
Số Lần Cài Đặt | 33 |
Phiên Bản Hiện Tại | 0.0.1.5 |
Cập Nhật Lần Cuối | 2020-10-11 |
Ngày Phát Hành | 2020-10-01 |
Đánh Giá | 4.50/5 Tổng số 2 Đánh Giá |
Nhà Phát Triển | https://forgetbook.com |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | http://www.forgetbook.com |
URL Trang Trợ Giúp | http://www.forgetbook.com |
Ngôn Ngữ Được Hỗ Trợ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Forgetbook", "short_name": "forgetbook", "version": "0.0.1.5", "description": "Automatically delete all of your posts, likes, and comments from Facebook; without removing any friends or leaving any groups.", "offline_enabled": false, "icons": { "16": "images\/icon16.png", "32": "images\/icon32.png", "48": "images\/icon48.png", "96": "images\/icon96.png", "128": "images\/icon128.png" }, "background": { "persistent": false, "scripts": [ "background.js" ] }, "content_scripts": [ { "matches": [ "*:\/\/*.facebook.com\/*" ], "js": [ "content.js", "terminator.js" ], "run_at": "document_idle", "all_frames": false } ], "page_action": { "default_title": "Forgetbook", "default_icon": { "16": "images\/icon16.png", "32": "images\/icon32.png", "48": "images\/icon48.png", "96": "images\/icon96.png", "128": "images\/icon128.png" }, "default_popup": "popup.html" }, "permissions": [ "activeTab", "*:\/\/*.facebook.com\/*" ] } |