Fave It!

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

Fave It! क्या है?

Fave It! Karthik Subramanian द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Bookmark Facebook posts by just clicking 'FaveIt' next to it!"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Fave It! एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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.                    

एक्सटेंशन की मूल जानकारी

नाम Fave It! Fave It!
ID mhojcabdgagooepopmfcimnkflgihnjg
आधिकारिक URL 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"
    }
}