Finwiz SEC plugin

Helps you graph data in SEC filings.

Cos'è Finwiz SEC plugin?

Finwiz SEC plugin è un'estensione di Chrome sviluppata da alexguo123, e la sua funzione principale è "Helps you graph data in SEC filings.".

Screenshot dell'Estensione

screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione Finwiz SEC plugin

Scarica i file di estensione Finwiz SEC plugin in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        When you visit a 10-Q or 10-K filing on sec.gov, the plugin will automatically create 'smart-links' on the left-hand side. The smart-link, if clicked, will take you to a graph of historical data.

For example, you can visit Barnes and Noble 10-Q filing, click on "Cash and Cash Equivalents" in the Balance Sheet, then see a graph of the data. You can see this process in the screenshots posted.                    

Informazioni di Base sull'Estensione

Nome Finwiz SEC plugin Finwiz SEC plugin
ID aihhkjkdkanjlnnhjgpincjfdlgikbee
URL Ufficiale https://chromewebstore.google.com/detail/finwiz-sec-plugin/aihhkjkdkanjlnnhjgpincjfdlgikbee
Descrizione Helps you graph data in SEC filings.
Dimensione del File 6.04 KB
Conteggio Installazioni 50
Versione Corrente 1.5
Ultimo Aggiornamento 2017-07-30
Data di Pubblicazione 2017-07-30
Valutazione 4.80/5 Totale 5 Valutazioni
Sviluppatore alexguo123
Email [email protected]
Tipo di Pagamento free
Lingue Supportate en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Finwiz SEC plugin",
    "description": "Helps you graph data in SEC filings.",
    "version": "1.5",
    "content_scripts": [
        {
            "run_at": "document_end",
            "matches": [
                "https:\/\/www.sec.gov\/Archives\/edgar\/data\/*"
            ],
            "js": [
                "sec.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    }
}