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 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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 |
공식 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 |
이메일 | [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" } ] } |