Bookface Companion

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

What is Bookface Companion?

Bookface Companion is a Chrome extension developed by https://www.ycombinator.com, and its main feature is "Count down to Demo Day and search Bookface from your Omnibox.".

Extension Screenshots

screenshot

Download Bookface Companion Extension CRX File

Download Bookface Companion extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name Bookface Companion Bookface Companion
ID bffjoheaobiobcocbgpehhegifipbbdp
Official URL https://chromewebstore.google.com/detail/bookface-companion/bffjoheaobiobcocbgpehhegifipbbdp
Description Count down to Demo Day and search Bookface from your Omnibox.
File Size 1.45 MB
Installation Count 1,462
Current Version 1.29
Last Updated 2023-05-18
Publish Date 2020-05-05
Rating 4.91/5 Total 11 Ratings
Developer https://www.ycombinator.com
Email [email protected]
Payment Type free
Extension Website https://www.ycombinator.com
Privacy Policy Page URL https://www.ycombinator.com/legal
Supported Languages 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"
        }
    ]
}