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.”。

擴展截圖

screenshot

下載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 Yahoo Finance Option Open Interest Extension
ID bllohaoomcnadgimabnnjalbnkbjmaem
官方網址 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"
        }
    ]
}