Bookface Companion
Count down to Demo Day and search Bookface from your Omnibox.
Wat is Bookface Companion?
Bookface Companion is een Chrome-extensie ontwikkeld door https://www.ycombinator.com, en de belangrijkste functie is "Count down to Demo Day and search Bookface from your Omnibox.".
Extensie Screenshots
Download het CRX-bestand van de extensie Bookface Companion
Download Bookface Companion-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
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. Basisinformatie over de Extensie
| Naam | |
| ID | bffjoheaobiobcocbgpehhegifipbbdp |
| Officiële URL | https://chromewebstore.google.com/detail/bookface-companion/bffjoheaobiobcocbgpehhegifipbbdp |
| Beschrijving | Count down to Demo Day and search Bookface from your Omnibox. |
| Bestandsgrootte | 1.45 MB |
| Aantal Installaties | 1,462 |
| Huidige Versie | 1.29 |
| Laatst Bijgewerkt | 2023-05-18 |
| Publicatiedatum | 2020-05-05 |
| Beoordeling | 4.91/5 Totaal 11 Beoordelingen |
| Ontwikkelaar | https://www.ycombinator.com |
| [email protected] | |
| Betalingswijze | free |
| Extensiewebsite | https://www.ycombinator.com |
| URL van de Privacybeleid Pagina | https://www.ycombinator.com/legal |
| Ondersteunde Talen | 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"
}
]
} | |