Bookface Companion
Count down to Demo Day and search Bookface from your Omnibox.
Cos'è Bookface Companion?
Bookface Companion è un'estensione di Chrome sviluppata da https://www.ycombinator.com, e la sua funzione principale è "Count down to Demo Day and search Bookface from your Omnibox.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Bookface Companion
Scarica i file di estensione Bookface Companion in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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.
Informazioni di Base sull'Estensione
Nome | Bookface Companion |
ID | bffjoheaobiobcocbgpehhegifipbbdp |
URL Ufficiale | https://chromewebstore.google.com/detail/bookface-companion/bffjoheaobiobcocbgpehhegifipbbdp |
Descrizione | Count down to Demo Day and search Bookface from your Omnibox. |
Dimensione del File | 1.45 MB |
Conteggio Installazioni | 1,462 |
Versione Corrente | 1.29 |
Ultimo Aggiornamento | 2023-05-18 |
Data di Pubblicazione | 2020-05-05 |
Valutazione | 4.91/5 Totale 11 Valutazioni |
Sviluppatore | https://www.ycombinator.com |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://www.ycombinator.com |
URL della Pagina della Politica sulla Privacy | https://www.ycombinator.com/legal |
Lingue Supportate | 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" } ] } |