Fave It!
Bookmark Facebook posts by just clicking 'FaveIt' next to it!
Cos'è Fave It!?
Fave It! è un'estensione di Chrome sviluppata da Karthik Subramanian, e la sua funzione principale è "Bookmark Facebook posts by just clicking 'FaveIt' next to it!".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Fave It!
Scarica i file di estensione Fave It! in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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.
Informazioni di Base sull'Estensione
Nome | |
ID | mhojcabdgagooepopmfcimnkflgihnjg |
URL Ufficiale | https://chromewebstore.google.com/detail/fave-it/mhojcabdgagooepopmfcimnkflgihnjg |
Descrizione | Bookmark Facebook posts by just clicking 'FaveIt' next to it! |
Dimensione del File | 548 KB |
Conteggio Installazioni | 13 |
Versione Corrente | 1.0.0 |
Ultimo Aggiornamento | 2016-09-21 |
Data di Pubblicazione | 2016-09-21 |
Valutazione | 5.00/5 Totale 5 Valutazioni |
Sviluppatore | Karthik Subramanian |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://github.com/yeskarthik/fave-it |
URL della Pagina di Aiuto | https://github.com/yeskarthik/fave-it/issues |
Lingue Supportate | 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" } } |