Finwiz SEC plugin

Helps you graph data in SEC filings.

ما هو Finwiz SEC plugin؟

Finwiz SEC plugin هو إضافة Chrome تم تطويرها بواسطة alexguo123، والميزة الرئيسية لها هي "Helps you graph data in SEC filings.".

لقطات شاشة التمديد

screenshot
screenshot
screenshot

تحميل ملف CRX للإضافة Finwiz SEC plugin

قم بتنزيل ملفات الامتداد Finwiz SEC plugin بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات 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
    }
}