AngelList/500 Startups Connection Highlighter
This extension will highlight any company and/or names that is associated with a 500 startups company.
AngelList/500 Startups Connection Highlighter란 무엇입니까?
AngelList/500 Startups Connection Highlighter은(는) https://venuespot.co에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "This extension will highlight any company and/or names that is associated with a 500 startups company."입니다.
확장 프로그램 스크린샷
AngelList/500 Startups Connection Highlighter 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
This extension will highlight any company and/or names that is associated with a 500 startups company. Why? We were fundraising for our company for a seed round and wanted to get intros from investors that also have invested in previous 500.co companies. NEW for v2! - Added a new options panel to configure whether to highlight the investors/advisors to the 500startups portfolio companies. To do so see the settings page below. - Ability to use a custom source (if you want to add append companies / people yourself). Read instructions on the options page on how to do so. Adjust Settings: Please goto chrome://extensions, look for this plugin, and then click options. You can turn on highlighting the people who are investors/advisors to the 500.co portfolio companies and also set a custom source (optional). Demo: - Install the plugin. - Goto https://angel.co/forerunner-ventures - You should see the 500 companies that this VC firm invested in. Notes: - This works on company and investor pages right now. Doesn't work for ajax search results (yet).
확장 프로그램 기본 정보
이름 | AngelList/500 Startups Connection Highlighter |
ID | ialilknfihmdjmgfkmajhegfilfnilll |
공식 URL | https://chromewebstore.google.com/detail/angellist500-startups-con/ialilknfihmdjmgfkmajhegfilfnilll |
설명 | This extension will highlight any company and/or names that is associated with a 500 startups company. |
파일 크기 | 146 KB |
설치 횟수 | 211 |
현재 버전 | 2.0.5 |
최근 업데이트 | 2014-05-08 |
출시 날짜 | 2014-05-07 |
평점 | 4.43/5 총 7 개의 평점 |
개발자 | https://venuespot.co |
이메일 | [email protected] |
결제 유형 | free |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "AngelList\/500 Startups Connection Highlighter", "description": "This extension will highlight any company and\/or names that is associated with a 500 startups company.", "version": "2.0.5", "permissions": [ "http:\/\/*.angel.co\/*", "https:\/\/*.angel.co\/*", "storage" ], "content_scripts": [ { "matches": [ "https:\/\/angel.co\/*", "http:\/\/angel.co\/*" ], "js": [ "contentscript.js" ] } ], "web_accessible_resources": [ "scripts\/*", "lib\/*" ], "icons": { "32": "icon.png", "128": "icon_128.png" }, "background": { "scripts": [ "background.js" ] }, "options_page": "options.html" } |