Finwiz SEC plugin
Helps you graph data in SEC filings.
Wat is Finwiz SEC plugin?
Finwiz SEC plugin is een Chrome-extensie ontwikkeld door alexguo123, en de belangrijkste functie is "Helps you graph data in SEC filings.".
Extensie Screenshots
Download het CRX-bestand van de extensie Finwiz SEC plugin
Download Finwiz SEC plugin-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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.
Basisinformatie over de Extensie
Naam | Finwiz SEC plugin |
ID | aihhkjkdkanjlnnhjgpincjfdlgikbee |
Officiële URL | https://chromewebstore.google.com/detail/finwiz-sec-plugin/aihhkjkdkanjlnnhjgpincjfdlgikbee |
Beschrijving | Helps you graph data in SEC filings. |
Bestandsgrootte | 6.04 KB |
Aantal Installaties | 50 |
Huidige Versie | 1.5 |
Laatst Bijgewerkt | 2017-07-30 |
Publicatiedatum | 2017-07-30 |
Beoordeling | 4.80/5 Totaal 5 Beoordelingen |
Ontwikkelaar | alexguo123 |
[email protected] | |
Betalingswijze | free |
Ondersteunde Talen | 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 } } |