Crunchbase Enhancer
This extension adds detailed stats, charts and analysis to the crunchbase investor and company pages
What is Crunchbase Enhancer?
Crunchbase Enhancer is a Chrome extension developed by https://iknow.io, and its main feature is "This extension adds detailed stats, charts and analysis to the crunchbase investor and company pages".
Extension Screenshots
Download Crunchbase Enhancer Extension CRX File
Download Crunchbase Enhancer extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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.
Extension Basic Information
Name | Crunchbase Enhancer |
ID | kolcdbonbggbngfdehifhfkcboihnnih |
Official URL | https://chromewebstore.google.com/detail/crunchbase-enhancer/kolcdbonbggbngfdehifhfkcboihnnih |
Description | This extension adds detailed stats, charts and analysis to the crunchbase investor and company pages |
File Size | 90.95 KB |
Installation Count | 752 |
Current Version | 1.6 |
Last Updated | 2014-05-29 |
Publish Date | 2014-05-29 |
Rating | 4.11/5 Total 9 Ratings |
Developer | https://iknow.io |
Payment Type | free |
Supported Languages | 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" } } |