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