Fave It!

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

Wat is Fave It!?

Fave It! is een Chrome-extensie ontwikkeld door Karthik Subramanian, en de belangrijkste functie is "Bookmark Facebook posts by just clicking 'FaveIt' next to it!".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie Fave It!

Download Fave It!-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam Fave It! Fave It!
ID mhojcabdgagooepopmfcimnkflgihnjg
Officiële URL https://chromewebstore.google.com/detail/fave-it/mhojcabdgagooepopmfcimnkflgihnjg
Beschrijving Bookmark Facebook posts by just clicking 'FaveIt' next to it!
Bestandsgrootte 548 KB
Aantal Installaties 13
Huidige Versie 1.0.0
Laatst Bijgewerkt 2016-09-21
Publicatiedatum 2016-09-21
Beoordeling 5.00/5 Totaal 5 Beoordelingen
Ontwikkelaar Karthik Subramanian
Betalingswijze free
Extensiewebsite https://github.com/yeskarthik/fave-it
Help Pagina-URL https://github.com/yeskarthik/fave-it/issues
Ondersteunde Talen 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"
    }
}