Yahoo Finance Option Open Interest Extension
An extension that plugs into Yahoo Finance Option Straddle pages to help view the weight ratio of call and put open interest.
什么是Yahoo Finance Option Open Interest Extension?
Yahoo Finance Option Open Interest Extension是由Uzzy开发的Chrome扩展程序,该扩展的主要功能是“An extension that plugs into Yahoo Finance Option Straddle pages to help view the weight ratio of call and put open interest.”。
扩展截图
下载Yahoo Finance Option Open Interest Extension扩展crx文件
下载Yahoo Finance Option Open Interest Extension扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
It simply adds a new column titled "Open Interest Aggregate" to the Options straddle view to make it easier to see where the infliction point for call vs put is for the open interest. The domain is limited to "finance.yahoo.com".
扩展基本信息
名称 | Yahoo Finance Option Open Interest Extension |
ID | bllohaoomcnadgimabnnjalbnkbjmaem |
官方URL | https://chromewebstore.google.com/detail/yahoo-finance-option-open/bllohaoomcnadgimabnnjalbnkbjmaem |
简介 | An extension that plugs into Yahoo Finance Option Straddle pages to help view the weight ratio of call and put open interest. |
文件大小 | 73.24 KB |
安装次数 | 34 |
当前版本 | 1.0.0 |
更新时间 | 2023-04-03 |
上架时间 | 2023-04-03 |
开发者 | Uzzy |
电子邮箱 | [email protected] |
付费类型 | free |
支持的语言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Yahoo Finance Option Open Interest Extension", "version": "1.0.0", "description": "An extension that plugs into Yahoo Finance Option Straddle pages to help view the weight ratio of call and put open interest.", "icons": { "128": "icon.png" }, "permissions": [], "action": { "default_popup": "popup.html" }, "content_scripts": [ { "matches": [ "https:\/\/finance.yahoo.com\/quote\/*" ], "js": [ "content.js" ], "run_at": "document_idle" } ] } |