Fave It!

Bookmark Facebook posts by just clicking 'FaveIt' next to it!

What is Fave It!?

Fave It! is a Chrome extension developed by Karthik Subramanian, and its main feature is "Bookmark Facebook posts by just clicking 'FaveIt' next to it!".

Extension Screenshots

screenshot

Download Fave It! Extension CRX File

Download Fave It! extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name Fave It! Fave It!
ID mhojcabdgagooepopmfcimnkflgihnjg
Official URL https://chromewebstore.google.com/detail/fave-it/mhojcabdgagooepopmfcimnkflgihnjg
Description Bookmark Facebook posts by just clicking 'FaveIt' next to it!
File Size 548 KB
Installation Count 13
Current Version 1.0.0
Last Updated 2016-09-21
Publish Date 2016-09-21
Rating 5.00/5 Total 5 Ratings
Developer Karthik Subramanian
Payment Type free
Extension Website https://github.com/yeskarthik/fave-it
Help Page URL https://github.com/yeskarthik/fave-it/issues
Supported Languages 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"
    }
}