Fave It!
Bookmark Facebook posts by just clicking 'FaveIt' next to it!
Co to jest Fave It!?
Fave It! to rozszerzenie Chrome opracowane przez Karthik Subramanian, a jego główną funkcją jest „Bookmark Facebook posts by just clicking 'FaveIt' next to it!”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Fave It!
Pobierz pliki rozszerzeń Fave It! w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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.
Podstawowe informacje o rozszerzeniu
Nazwa | |
ID | mhojcabdgagooepopmfcimnkflgihnjg |
Oficjalny URL | https://chromewebstore.google.com/detail/fave-it/mhojcabdgagooepopmfcimnkflgihnjg |
Opis | Bookmark Facebook posts by just clicking 'FaveIt' next to it! |
Rozmiar pliku | 548 KB |
Liczba instalacji | 13 |
Aktualna Wersja | 1.0.0 |
Ostatnia Aktualizacja | 2016-09-21 |
Data Publikacji | 2016-09-21 |
Ocena | 5.00/5 Łącznie 5 Oceny |
Deweloper | Karthik Subramanian |
Typ Płatności | free |
Strona Rozszerzenia | https://github.com/yeskarthik/fave-it |
Adres URL Strony Pomocy | https://github.com/yeskarthik/fave-it/issues |
Obsługiwane Języki | 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" } } |