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.”。
擴展截圖
下載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 |
ID | bffjoheaobiobcocbgpehhegifipbbdp |
官方網址 | 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" } ] } |