Bookface Companion
Count down to Demo Day and search Bookface from your Omnibox.
Was ist Bookface Companion?
Bookface Companion ist eine Chrome-Erweiterung, die von https://www.ycombinator.com entwickelt wurde, und ihr Hauptmerkmal ist "Count down to Demo Day and search Bookface from your Omnibox.".
Erweiterungsscreenshots
Bookface Companion-Erweiterungs-CRX-Datei herunterladen
Laden Sie Bookface Companion-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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. Grundlegende Informationen zur Erweiterung
| Name | |
| ID | bffjoheaobiobcocbgpehhegifipbbdp |
| Offizielle URL | https://chromewebstore.google.com/detail/bookface-companion/bffjoheaobiobcocbgpehhegifipbbdp |
| Beschreibung | Count down to Demo Day and search Bookface from your Omnibox. |
| Dateigröße | 1.45 MB |
| Installationsanzahl | 1,462 |
| Aktuelle Version | 1.29 |
| Letztes Update | 2023-05-18 |
| Veröffentlichungsdatum | 2020-05-05 |
| Bewertung | 4.91/5 Insgesamt 11 Bewertungen |
| Entwickler | https://www.ycombinator.com |
| [email protected] | |
| Zahlungsart | free |
| Erweiterungswebsite | https://www.ycombinator.com |
| URL der Datenschutzrichtlinien-Seite | https://www.ycombinator.com/legal |
| Unterstützte Sprachen | 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"
}
]
} | |