AngelList/500 Startups Connection Highlighter

This extension will highlight any company and/or names that is associated with a 500 startups company.

Co to jest AngelList/500 Startups Connection Highlighter?

AngelList/500 Startups Connection Highlighter to rozszerzenie Chrome opracowane przez https://venuespot.co, a jego główną funkcją jest „This extension will highlight any company and/or names that is associated with a 500 startups company.”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot
screenshot

Pobierz plik CRX rozszerzenia AngelList/500 Startups Connection Highlighter

Pobierz pliki rozszerzeń AngelList/500 Startups Connection Highlighter 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

                        This extension will highlight any company and/or names that is associated with a 500 startups company.

Why? 
We were fundraising for our company for a seed round and wanted to get intros from investors that also have invested in previous 500.co companies.

NEW for v2!
- Added a new options panel to configure whether to highlight the investors/advisors to the 500startups portfolio companies. To do so see the settings page below.

- Ability to use a custom source (if you want to add append companies / people yourself). Read instructions on the options page on how to do so.

Adjust Settings:
Please goto chrome://extensions, look for this plugin, and then click options. You can turn on highlighting the people who are investors/advisors to the 500.co portfolio companies and also set a custom source (optional).

Demo: 
- Install the plugin.
- Goto https://angel.co/forerunner-ventures
- You should see the 500 companies that this VC firm invested in.

Notes:
- This works on company and investor pages right now. Doesn't work for ajax search results (yet).                    

Podstawowe informacje o rozszerzeniu

Nazwa AngelList/500 Startups Connection Highlighter AngelList/500 Startups Connection Highlighter
ID ialilknfihmdjmgfkmajhegfilfnilll
Oficjalny URL https://chromewebstore.google.com/detail/angellist500-startups-con/ialilknfihmdjmgfkmajhegfilfnilll
Opis This extension will highlight any company and/or names that is associated with a 500 startups company.
Rozmiar pliku 146 KB
Liczba instalacji 211
Aktualna Wersja 2.0.5
Ostatnia Aktualizacja 2014-05-08
Data Publikacji 2014-05-07
Ocena 4.43/5 Łącznie 7 Oceny
Deweloper https://venuespot.co
E-mail [email protected]
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": "AngelList\/500 Startups Connection Highlighter",
    "description": "This extension will highlight any company and\/or names that is associated with a 500 startups company.",
    "version": "2.0.5",
    "permissions": [
        "http:\/\/*.angel.co\/*",
        "https:\/\/*.angel.co\/*",
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/angel.co\/*",
                "http:\/\/angel.co\/*"
            ],
            "js": [
                "contentscript.js"
            ]
        }
    ],
    "web_accessible_resources": [
        "scripts\/*",
        "lib\/*"
    ],
    "icons": {
        "32": "icon.png",
        "128": "icon_128.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "options_page": "options.html"
}