Crunchbase Enhancer

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

Crunchbase Enhancer là gì?

Crunchbase Enhancer là một tiện ích mở rộng Chrome được phát triển bởi https://iknow.io, và tính năng chính của nó là "This extension adds detailed stats, charts and analysis to the crunchbase investor and company pages".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Crunchbase Enhancer

Tải xuống các tệp mở rộng Crunchbase Enhancer dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Crunchbase Enhancer Crunchbase Enhancer
ID kolcdbonbggbngfdehifhfkcboihnnih
URL Chính Thức https://chromewebstore.google.com/detail/crunchbase-enhancer/kolcdbonbggbngfdehifhfkcboihnnih
Mô tả This extension adds detailed stats, charts and analysis to the crunchbase investor and company pages
Kích Thước Tệp 90.95 KB
Số Lần Cài Đặt 752
Phiên Bản Hiện Tại 1.6
Cập Nhật Lần Cuối 2014-05-29
Ngày Phát Hành 2014-05-29
Đánh Giá 4.11/5 Tổng số 9 Đánh Giá
Nhà Phát Triển https://iknow.io
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
    }
}