Crunchbase Enhancer
This extension adds detailed stats, charts and analysis to the crunchbase investor and company pages
Wat is Crunchbase Enhancer?
Crunchbase Enhancer is een Chrome-extensie ontwikkeld door https://iknow.io, en de belangrijkste functie is "This extension adds detailed stats, charts and analysis to the crunchbase investor and company pages".
Extensie Screenshots
Download het CRX-bestand van de extensie Crunchbase Enhancer
Download Crunchbase Enhancer-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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.
Basisinformatie over de Extensie
Naam | Crunchbase Enhancer |
ID | kolcdbonbggbngfdehifhfkcboihnnih |
Officiële URL | https://chromewebstore.google.com/detail/crunchbase-enhancer/kolcdbonbggbngfdehifhfkcboihnnih |
Beschrijving | This extension adds detailed stats, charts and analysis to the crunchbase investor and company pages |
Bestandsgrootte | 90.95 KB |
Aantal Installaties | 752 |
Huidige Versie | 1.6 |
Laatst Bijgewerkt | 2014-05-29 |
Publicatiedatum | 2014-05-29 |
Beoordeling | 4.11/5 Totaal 9 Beoordelingen |
Ontwikkelaar | https://iknow.io |
Betalingswijze | free |
Ondersteunde Talen | 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" } } |