Finwiz SEC plugin

Helps you graph data in SEC filings.

O que é Finwiz SEC plugin?

Finwiz SEC plugin é uma extensão do Chrome desenvolvida por alexguo123, e sua principal característica é "Helps you graph data in SEC filings.".

Capturas de Tela da Extensão

screenshot
screenshot
screenshot

Baixar o arquivo CRX da Extensão Finwiz SEC plugin

Baixe arquivos de extensão Finwiz SEC plugin no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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.                    

Informações Básicas da Extensão

Nome Finwiz SEC plugin Finwiz SEC plugin
ID aihhkjkdkanjlnnhjgpincjfdlgikbee
URL Oficial https://chromewebstore.google.com/detail/finwiz-sec-plugin/aihhkjkdkanjlnnhjgpincjfdlgikbee
Descrição Helps you graph data in SEC filings.
Tamanho do Arquivo 6.04 KB
Contagem de Instalações 50
Versão Atual 1.5
Última Atualização 2017-07-30
Data de Publicação 2017-07-30
Classificação 4.80/5 Total de 5 Avaliações
Desenvolvedor alexguo123
Email [email protected]
Tipo de Pagamento free
Idiomas Suportados 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
    }
}