Fave It!
Bookmark Facebook posts by just clicking 'FaveIt' next to it!
Apa itu Fave It!?
Fave It! adalah ekstensi Chrome yang dikembangkan oleh Karthik Subramanian, dan fitur utamanya adalah "Bookmark Facebook posts by just clicking 'FaveIt' next to it!".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi Fave It!
Unduh file ekstensi Fave It! dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.
Petunjuk Penggunaan Ekstensi
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.
Informasi Dasar Ekstensi
Nama | |
ID | mhojcabdgagooepopmfcimnkflgihnjg |
URL Resmi | https://chromewebstore.google.com/detail/fave-it/mhojcabdgagooepopmfcimnkflgihnjg |
Deskripsi | Bookmark Facebook posts by just clicking 'FaveIt' next to it! |
Ukuran File | 548 KB |
Jumlah Instalasi | 13 |
Versi Saat Ini | 1.0.0 |
Terakhir Diperbarui | 2016-09-21 |
Tanggal Publikasi | 2016-09-21 |
Penilaian | 5.00/5 Total 5 Penilaian |
Pengembang | Karthik Subramanian |
Tipe Pembayaran | free |
Situs Ekstensi | https://github.com/yeskarthik/fave-it |
URL Halaman Bantuan | https://github.com/yeskarthik/fave-it/issues |
Bahasa yang Didukung | 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" } } |