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."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Finwiz SEC plugin
ดาวน์โหลดไฟล์ส่วนขยาย 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 |
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 } } |