Finwiz SEC plugin

Helps you graph data in SEC filings.

Was ist Finwiz SEC plugin?

Finwiz SEC plugin ist eine Chrome-Erweiterung, die von alexguo123 entwickelt wurde, und ihr Hauptmerkmal ist "Helps you graph data in SEC filings.".

Erweiterungsscreenshots

screenshot
screenshot
screenshot

Finwiz SEC plugin-Erweiterungs-CRX-Datei herunterladen

Laden Sie Finwiz SEC plugin-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name Finwiz SEC plugin Finwiz SEC plugin
ID aihhkjkdkanjlnnhjgpincjfdlgikbee
Offizielle URL https://chromewebstore.google.com/detail/finwiz-sec-plugin/aihhkjkdkanjlnnhjgpincjfdlgikbee
Beschreibung Helps you graph data in SEC filings.
Dateigröße 6.04 KB
Installationsanzahl 50
Aktuelle Version 1.5
Letztes Update 2017-07-30
Veröffentlichungsdatum 2017-07-30
Bewertung 4.80/5 Insgesamt 5 Bewertungen
Entwickler alexguo123
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen 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
    }
}