Facemark
Mark facebook posts as read
Facemark là gì?
Facemark là một tiện ích mở rộng Chrome được phát triển bởi kodeout, và tính năng chính của nó là "Mark facebook posts as read".
Ả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 Facemark
Tải xuống các tệp mở rộng Facemark 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
Have you ever given up finding out a new post to read? It can be time-wasting to walk through from the top of the timeline. Facemark allows you to mark old posts so that you can easily pick a fresh post. It marks automatically while reading through your timeline. Your read history will be saved only in your browser without any remote API call. Your feedback would be welcome. Please write to @codeout in Twitter or Chrome webstore. CHANGELOG v0.4.8 - Update ad-detection v0.4.7 - Update ad-detection v0.4.6 - Bugfixes to go along with recent facebook v0.4.5 - Bugfixes to go along with recent facebook v0.4.4 - Bugfixes to go along with recent facebook v0.4.3 - Autosaving buffered read list v0.4.2 - Introduced 'Hide ad posts' option v0.4.1 - Bugfix v0.4 - Use fbid to identify posts instead of data-dedupekey - Mark posts immediately after they are shown v0.3 - Introduced 'Mouseover to read again' option - Changes at the popup menu are applied immediately v0.2 - Bugfixes
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | |
ID | kbdbfkpdapmockbbjdpifnnbfenpnahf |
URL Chính Thức | https://chrome.google.com/webstore/detail/facemark/kbdbfkpdapmockbbjdpifnnbfenpnahf |
Mô tả | Mark facebook posts as read |
Kích Thước Tệp | 63.55 KB |
Số Lần Cài Đặt | 31 |
Phiên Bản Hiện Tại | 0.4.8 |
Cập Nhật Lần Cuối | 2018-09-16 |
Ngày Phát Hành | 2018-09-16 |
Đánh Giá | 5.00/5 Tổng số 1 Đánh Giá |
Nhà Phát Triển | kodeout |
[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", "manifest_version": 2, "name": "Facemark", "version": "0.4.8", "description": "Mark facebook posts as read", "options_page": "options.html", "icons": { "48": "images\/icon48.png", "128": "images\/icon128.png" }, "page_action": { "default_icon": { "19": "images\/icon19.png" }, "default_title": "Facemark", "default_popup": "popup.html" }, "background": { "scripts": [ "background.js" ] }, "content_scripts": [ { "matches": [ "http:\/\/www.facebook.com\/*", "https:\/\/www.facebook.com\/*" ], "js": [ "jquery-2.1.4.min.js", "jquery.inview.min.js", "mark.js" ], "css": [ "mark.css" ] } ], "permissions": [ "tabs", "alarms", "http:\/\/www.facebook.com\/*", "https:\/\/www.facebook.com\/*" ] } |