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”。
擴展截圖
下載Crunchbase Enhancer擴展crx文件
下載Crunchbase Enhancer擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
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 |
ID | kolcdbonbggbngfdehifhfkcboihnnih |
官方網址 | 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" } } |