Crunchbase Enhancer

This extension adds detailed stats, charts and analysis to the crunchbase investor and company pages

Crunchbase Enhancer란 무엇입니까?

Crunchbase Enhancer은(는) https://iknow.io에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "This extension adds detailed stats, charts and analysis to the crunchbase investor and company pages"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot

Crunchbase Enhancer 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        A must have for anyone that uses Crunchbase.  This extension automatically adds extremely useful information to all investor and company pages in Crunchbase as you browse.  See related investors, competitor breakdowns, investor rankings, sector analysis and more.  

All you have to do is install the extension and then browse as you normally would.  Each page will then be automatically enhanced for you, taking the Crunchbase experience to a whole new level.                    

확장 프로그램 기본 정보

이름 Crunchbase Enhancer Crunchbase Enhancer
ID kolcdbonbggbngfdehifhfkcboihnnih
공식 URL https://chromewebstore.google.com/detail/crunchbase-enhancer/kolcdbonbggbngfdehifhfkcboihnnih
설명 This extension adds detailed stats, charts and analysis to the crunchbase investor and company pages
파일 크기 90.95 KB
설치 횟수 752
현재 버전 1.6
최근 업데이트 2014-05-29
출시 날짜 2014-05-29
평점 4.11/5 총 9 개의 평점
개발자 https://iknow.io
결제 유형 free
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Crunchbase Enhancer",
    "description": "This extension adds detailed stats, charts and analysis to the crunchbase investor and company pages",
    "version": "1.6",
    "permissions": [
        "tabs",
        "http:\/\/crunchbase.com\/",
        "http:\/\/www.crunchbase.com\/",
        "http:\/\/iknow.io\/"
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/www.crunchbase.com\/person\/*",
                "http:\/\/www.crunchbase.com\/organization\/*"
            ],
            "css": [
                "crunchbase_common.css"
            ],
            "js": [
                "jquery-1.11.0.min.js",
                "d3.v3.min.js",
                "main.js"
            ],
            "run_at": "document_start"
        }
    ],
    "page_action": {
        "default_icon": "icon.png"
    }
}