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 - это расширение Chrome, разработанное Uzzy, и его основная функция - "An extension that plugs into Yahoo Finance Option Straddle pages to help view the weight ratio of call and put open interest.".

Снимки экрана расширения

screenshot

Скачать файл CRX расширения Yahoo Finance Option Open Interest Extension

Скачайте файлы расширений 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
Официальный 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"
        }
    ]
}