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.

O que é Yahoo Finance Option Open Interest Extension?

Yahoo Finance Option Open Interest Extension é uma extensão do Chrome desenvolvida por Uzzy, e sua principal característica é "An extension that plugs into Yahoo Finance Option Straddle pages to help view the weight ratio of call and put open interest.".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Yahoo Finance Option Open Interest Extension

Baixe arquivos de extensão Yahoo Finance Option Open Interest Extension no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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".                    

Informações Básicas da Extensão

Nome Yahoo Finance Option Open Interest Extension Yahoo Finance Option Open Interest Extension
ID bllohaoomcnadgimabnnjalbnkbjmaem
URL Oficial https://chromewebstore.google.com/detail/yahoo-finance-option-open/bllohaoomcnadgimabnnjalbnkbjmaem
Descrição An extension that plugs into Yahoo Finance Option Straddle pages to help view the weight ratio of call and put open interest.
Tamanho do Arquivo 73.24 KB
Contagem de Instalações 34
Versão Atual 1.0.0
Última Atualização 2023-04-03
Data de Publicação 2023-04-03
Desenvolvedor Uzzy
Email [email protected]
Tipo de Pagamento free
Idiomas Suportados 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"
        }
    ]
}