Finwiz SEC plugin

Helps you graph data in SEC filings.

Qu'est-ce que Finwiz SEC plugin ?

Finwiz SEC plugin est une extension Chrome développée par alexguo123, et sa fonction principale est "Helps you graph data in SEC filings.".

Captures d'Écran de l'Extension

screenshot
screenshot
screenshot

Télécharger le fichier CRX de l'extension Finwiz SEC plugin

Téléchargez les fichiers d'extension Finwiz SEC plugin au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom Finwiz SEC plugin Finwiz SEC plugin
ID aihhkjkdkanjlnnhjgpincjfdlgikbee
URL Officiel https://chromewebstore.google.com/detail/finwiz-sec-plugin/aihhkjkdkanjlnnhjgpincjfdlgikbee
Description Helps you graph data in SEC filings.
Taille du Fichier 6.04 KB
Nombre d'Installations 50
Version Actuelle 1.5
Dernière Mise à Jour 2017-07-30
Date de Publication 2017-07-30
Évaluation 4.80/5 Total 5 Évaluations
Développeur alexguo123
Email [email protected]
Type de Paiement free
Langues Prises en Charge 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
    }
}