Fave It!
Bookmark Facebook posts by just clicking 'FaveIt' next to it!
Vad är Fave It!?
Fave It! är en Chrome-tillägg utvecklad av Karthik Subramanian, och dess huvudfunktion är "Bookmark Facebook posts by just clicking 'FaveIt' next to it!".
Tilläggsskärmbilder
Ladda ner Fave It!-förlängningens CRX-fil
Ladda ner Fave It!-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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.
Grundläggande Information om Tillägg
Namn | |
ID | mhojcabdgagooepopmfcimnkflgihnjg |
Officiell webbadress | https://chromewebstore.google.com/detail/fave-it/mhojcabdgagooepopmfcimnkflgihnjg |
Beskrivning | Bookmark Facebook posts by just clicking 'FaveIt' next to it! |
Filstorlek | 548 KB |
Antal Installationer | 13 |
Aktuell Version | 1.0.0 |
Senast Uppdaterad | 2016-09-21 |
Publiceringsdatum | 2016-09-21 |
Betyg | 5.00/5 Totalt 5 Betyg |
Utvecklare | Karthik Subramanian |
Betalningssätt | free |
Tilläggswebbplats | https://github.com/yeskarthik/fave-it |
Hjälpsida URL | https://github.com/yeskarthik/fave-it/issues |
Stödda Språk | 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" } } |