Fave It!
Bookmark Facebook posts by just clicking 'FaveIt' next to it!
Fave It! là gì?
Fave It! là một tiện ích mở rộng Chrome được phát triển bởi Karthik Subramanian, và tính năng chính của nó là "Bookmark Facebook posts by just clicking 'FaveIt' next to it!".
Ả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 Fave It!
Tải xuống các tệp mở rộng Fave It! 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
Tired of scrolling down the Facebook stream to find interesting posts by your buddies a few days back? Here's an ultimate tool to bookmark posts in the Facebook stream without opening the post or right clicking it. Just click 'Faveit' and the link is automagically added to a separate folder called 'Fav'd Bookmarks' in your Google Chrome bookmarks bar.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | |
ID | mhojcabdgagooepopmfcimnkflgihnjg |
URL Chính Thức | https://chromewebstore.google.com/detail/fave-it/mhojcabdgagooepopmfcimnkflgihnjg |
Mô tả | Bookmark Facebook posts by just clicking 'FaveIt' next to it! |
Kích Thước Tệp | 548 KB |
Số Lần Cài Đặt | 13 |
Phiên Bản Hiện Tại | 1.0.0 |
Cập Nhật Lần Cuối | 2016-09-21 |
Ngày Phát Hành | 2016-09-21 |
Đánh Giá | 5.00/5 Tổng số 5 Đánh Giá |
Nhà Phát Triển | Karthik Subramanian |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/yeskarthik/fave-it |
URL Trang Trợ Giúp | https://github.com/yeskarthik/fave-it/issues |
Ngôn Ngữ Được Hỗ Trợ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Fave It!", "description": "Bookmark Facebook posts by just clicking 'FaveIt' next to it!", "version": "1.0.0", "permissions": [ "webRequest", "bookmarks", "background", "tabs", "http:\/\/www.facebook.com\/*", "https:\/\/www.facebook.com\/*" ], "content_scripts": [ { "matches": [ "http:\/\/www.facebook.com\/*", "https:\/\/www.facebook.com\/*" ], "js": [ "jquery-1.11.0.min.js", "inject.js" ], "css": [ "faveit-style.css" ], "run_at": "document_end" } ], "background": { "persistent": true, "scripts": [ "jquery-1.11.0.min.js", "background.js" ] }, "icons": { "128": "bookmark.png" } } |