Crunchbase Enhancer
This extension adds detailed stats, charts and analysis to the crunchbase investor and company pages
Crunchbase Enhancer क्या है?
Crunchbase Enhancer https://iknow.io द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "This extension adds detailed stats, charts and analysis to the crunchbase investor and company pages"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Crunchbase Enhancer एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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 |
आधिकारिक URL | 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" } } |