Bookface Companion

Count down to Demo Day and search Bookface from your Omnibox.

什么是Bookface Companion?

Bookface Companion是由https://www.ycombinator.com开发的Chrome扩展程序,该扩展的主要功能是“Count down to Demo Day and search Bookface from your Omnibox.”。

扩展截图

screenshot

下载Bookface Companion扩展crx文件

下载Bookface Companion扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        Shows a count-down clock to demo day, allows you to search Bookface from your Omnibox and optionally provides a Bookface user sidebar in your gmail thread view. 

A simple yet surprisingly effective tool for maintaining a sense of urgency.

Countdown originally built by YC alum Fouad Matin.                    

扩展基本信息

名称 Bookface Companion Bookface Companion
ID bffjoheaobiobcocbgpehhegifipbbdp
官方URL https://chromewebstore.google.com/detail/bookface-companion/bffjoheaobiobcocbgpehhegifipbbdp
简介 Count down to Demo Day and search Bookface from your Omnibox.
文件大小 1.45 MB
安装次数 1,462
当前版本 1.29
更新时间 2023-05-18
上架时间 2020-05-05
评分 4.91/5 共11次评分
开发者 https://www.ycombinator.com
电子邮箱 [email protected]
付费类型 free
扩展官网 https://www.ycombinator.com
隐私政策页面URL https://www.ycombinator.com/legal
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Bookface Companion",
    "offline_enabled": true,
    "version": "1.29",
    "description": "Count down to Demo Day and search Bookface from your Omnibox.",
    "manifest_version": 2,
    "icons": {
        "16": "images\/icon-16.png",
        "48": "images\/icon-48.png",
        "128": "images\/icon-128.png"
    },
    "omnibox": {
        "keyword": "bf"
    },
    "chrome_url_overrides": {
        "newtab": "index.html"
    },
    "options_ui": {
        "page": "options.html",
        "open_in_tab": false
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "permissions": [
        "tabs",
        "storage",
        "https:\/\/bookface.ycombinator.com\/*"
    ],
    "optional_permissions": [
        "https:\/\/mail.google.com\/*",
        "https:\/\/inbox.google.com\/*"
    ],
    "web_accessible_resources": [
        "\/images\/*",
        "pageWorld.js"
    ],
    "page_action": {
        "default_icon": "images\/icon-128.png",
        "default_title": "View on Bookface"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/mail.google.com\/*",
                "https:\/\/inbox.google.com\/*"
            ],
            "js": [
                "inboxsdk.js",
                "content.js"
            ],
            "css": [
                "static\/css\/content.css"
            ],
            "run_at": "document_end"
        }
    ]
}