Finwiz SEC plugin
Helps you graph data in SEC filings.
Hvad er Finwiz SEC plugin?
Finwiz SEC plugin er en Chrome-udvidelse udviklet af alexguo123, og dens hovedfunktion er "Helps you graph data in SEC filings.".
Udvidelsesskærmbilleder
Download Finwiz SEC plugin-udvidelses-CRX-fil
Download Finwiz SEC plugin-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
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.
Grundlæggende oplysninger om udvidelsen
Navn | Finwiz SEC plugin |
ID | aihhkjkdkanjlnnhjgpincjfdlgikbee |
Officiel URL | https://chromewebstore.google.com/detail/finwiz-sec-plugin/aihhkjkdkanjlnnhjgpincjfdlgikbee |
Beskrivelse | Helps you graph data in SEC filings. |
Filstørrelse | 6.04 KB |
Antal Installationer | 50 |
Nuværende Version | 1.5 |
Senest Opdateret | 2017-07-30 |
Udgivelsesdato | 2017-07-30 |
Bedømmelse | 4.80/5 Samlet 5 Bedømmelser |
Udvikler | alexguo123 |
[email protected] | |
Betalingsmetode | free |
Understøttede Sprog | 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 } } |