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!」です。

拡張機能のスクリーンショット

screenshot

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.                    

拡張機能の基本情報

名前 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"
    }
}