Finwiz SEC plugin
Helps you graph data in SEC filings.
Finwiz SEC plugin क्या है?
Finwiz SEC plugin alexguo123 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Helps you graph data in SEC filings."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Finwiz SEC plugin एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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 |
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 } } |