Crunchbase Enhancer
This extension adds detailed stats, charts and analysis to the crunchbase investor and company pages
Co to jest Crunchbase Enhancer?
Crunchbase Enhancer to rozszerzenie Chrome opracowane przez https://iknow.io, a jego główną funkcją jest „This extension adds detailed stats, charts and analysis to the crunchbase investor and company pages”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Crunchbase Enhancer
Pobierz pliki rozszerzeń Crunchbase Enhancer w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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.
Podstawowe informacje o rozszerzeniu
Nazwa | Crunchbase Enhancer |
ID | kolcdbonbggbngfdehifhfkcboihnnih |
Oficjalny URL | https://chromewebstore.google.com/detail/crunchbase-enhancer/kolcdbonbggbngfdehifhfkcboihnnih |
Opis | This extension adds detailed stats, charts and analysis to the crunchbase investor and company pages |
Rozmiar pliku | 90.95 KB |
Liczba instalacji | 752 |
Aktualna Wersja | 1.6 |
Ostatnia Aktualizacja | 2014-05-29 |
Data Publikacji | 2014-05-29 |
Ocena | 4.11/5 Łącznie 9 Oceny |
Deweloper | https://iknow.io |
Typ Płatności | free |
Obsługiwane Języki | 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" } } |