Fave It!
Bookmark Facebook posts by just clicking 'FaveIt' next to it!
Qu'est-ce que Fave It! ?
Fave It! est une extension Chrome développée par Karthik Subramanian, et sa fonction principale est "Bookmark Facebook posts by just clicking 'FaveIt' next to it!".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Fave It!
Téléchargez les fichiers d'extension Fave It! au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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.
Informations de Base sur l'Extension
Nom | |
ID | mhojcabdgagooepopmfcimnkflgihnjg |
URL Officiel | https://chromewebstore.google.com/detail/fave-it/mhojcabdgagooepopmfcimnkflgihnjg |
Description | Bookmark Facebook posts by just clicking 'FaveIt' next to it! |
Taille du Fichier | 548 KB |
Nombre d'Installations | 13 |
Version Actuelle | 1.0.0 |
Dernière Mise à Jour | 2016-09-21 |
Date de Publication | 2016-09-21 |
Évaluation | 5.00/5 Total 5 Évaluations |
Développeur | Karthik Subramanian |
Type de Paiement | free |
Site Web de l'Extension | https://github.com/yeskarthik/fave-it |
URL de la Page d'Aide | https://github.com/yeskarthik/fave-it/issues |
Langues Prises en Charge | 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" } } |