Finwiz SEC plugin
Helps you graph data in SEC filings.
什么是Finwiz SEC plugin?
Finwiz SEC plugin是由alexguo123开发的Chrome扩展程序,该扩展的主要功能是“Helps you graph data in SEC filings.”。
扩展截图
下载Finwiz SEC plugin扩展crx文件
下载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 } } |