Fave It!
Bookmark Facebook posts by just clicking 'FaveIt' next to it!
什麼是Fave It!?
Fave It!是由Karthik Subramanian開發的Chrome擴展程式,該擴展的主要功能是“Bookmark Facebook posts by just clicking 'FaveIt' next to it!”。
擴展截圖
下載Fave It!擴展crx文件
下載Fave It!擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
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.
擴展基本資訊
名稱 | |
ID | mhojcabdgagooepopmfcimnkflgihnjg |
官方網址 | https://chromewebstore.google.com/detail/fave-it/mhojcabdgagooepopmfcimnkflgihnjg |
簡介 | Bookmark Facebook posts by just clicking 'FaveIt' next to it! |
檔案大小 | 548 KB |
安裝次數 | 13 |
目前版本 | 1.0.0 |
更新時間 | 2016-09-21 |
上架時間 | 2016-09-21 |
評分 | 5.00/5 共 5 次評分 |
開發者 | Karthik Subramanian |
付費類型 | free |
擴展官網 | https://github.com/yeskarthik/fave-it |
說明頁面URL | https://github.com/yeskarthik/fave-it/issues |
支援的語言 | 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" } } |