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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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
공식 URL 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
    }
}