SEC Live

One-click access to any company's SEC filings.

Co to jest SEC Live?

SEC Live to rozszerzenie Chrome opracowane przez SEC Live, a jego główną funkcją jest „One-click access to any company's SEC filings.”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot

Pobierz plik CRX rozszerzenia SEC Live

Pobierz pliki rozszerzeń SEC Live 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

                        For financial analysts, journalists and individual investors. 

Get instant access to any company's SEC filings while browsing the web. Highlight a company name or ticker symbol, right-click and start browsing its SEC filings. 

Sign up for an SEC Live account (available at www.seclive.com) and start using it. SEC Live gives you the advantage of reading filings online with easier-to-read text, faster navigation within a filing and effortless notes and highlighting.                    

Podstawowe informacje o rozszerzeniu

Nazwa SEC Live SEC Live
ID gfaidnickbpgemiecakpjddngoghhioa
Oficjalny URL https://chrome.google.com/webstore/detail/sec-live/gfaidnickbpgemiecakpjddngoghhioa
Opis One-click access to any company's SEC filings.
Rozmiar pliku 17.37 KB
Liczba instalacji 247
Aktualna Wersja 1.0.0
Ostatnia Aktualizacja 2013-12-11
Data Publikacji 2013-11-28
Ocena 5.00/5 Łącznie 3 Oceny
Deweloper SEC Live
Obsługiwane Języki en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "SEC Live",
    "short_name": "seclive",
    "version": "1.0.0",
    "description": "One-click access to any company's SEC filings.",
    "icons": {
        "16": "img\/icon_16.png",
        "48": "img\/icon_48.png",
        "128": "img\/icon_128.png"
    },
    "permissions": [
        "contextMenus",
        "clipboardRead"
    ],
    "browser_action": {
        "default_title": "Look up company filings in SEC Live",
        "default_icon": {
            "19": "img\/icon_16.png"
        }
    },
    "background": {
        "scripts": [
            "scripts\/background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "scripts\/contentscript.js"
            ],
            "run_at": "document_idle",
            "all_frames": false
        }
    ]
}