Finwiz SEC plugin

Helps you graph data in SEC filings.

什麼是Finwiz SEC plugin?

Finwiz SEC plugin是由alexguo123開發的Chrome擴展程式,該擴展的主要功能是“Helps you graph data in SEC filings.”。

擴展截圖

screenshot
screenshot
screenshot

下載Finwiz SEC plugin擴展crx文件

下載Finwiz SEC plugin擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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.                    

擴展基本資訊

名稱 Finwiz SEC plugin Finwiz SEC plugin
ID aihhkjkdkanjlnnhjgpincjfdlgikbee
官方網址 https://chromewebstore.google.com/detail/finwiz-sec-plugin/aihhkjkdkanjlnnhjgpincjfdlgikbee
簡介 Helps you graph data in SEC filings.
檔案大小 6.04 KB
安裝次數 50
目前版本 1.5
更新時間 2017-07-30
上架時間 2017-07-30
評分 4.80/5 共 5 次評分
開發者 alexguo123
電子郵箱 [email protected]
付費類型 free
支援的語言 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
    }
}