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. 拡張機能の基本情報
| 名前 | |
| ID | bffjoheaobiobcocbgpehhegifipbbdp |
| 公式URL | 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 |
| Eメール | [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"
}
]
} | |