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.

Vad är Yahoo Finance Option Open Interest Extension?

Yahoo Finance Option Open Interest Extension är en Chrome-tillägg utvecklad av Uzzy, och dess huvudfunktion är "An extension that plugs into Yahoo Finance Option Straddle pages to help view the weight ratio of call and put open interest.".

Tilläggsskärmbilder

screenshot

Ladda ner Yahoo Finance Option Open Interest Extension-förlängningens CRX-fil

Ladda ner Yahoo Finance Option Open Interest Extension-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

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

Grundläggande Information om Tillägg

Namn Yahoo Finance Option Open Interest Extension Yahoo Finance Option Open Interest Extension
ID bllohaoomcnadgimabnnjalbnkbjmaem
Officiell webbadress https://chromewebstore.google.com/detail/yahoo-finance-option-open/bllohaoomcnadgimabnnjalbnkbjmaem
Beskrivning An extension that plugs into Yahoo Finance Option Straddle pages to help view the weight ratio of call and put open interest.
Filstorlek 73.24 KB
Antal Installationer 34
Aktuell Version 1.0.0
Senast Uppdaterad 2023-04-03
Publiceringsdatum 2023-04-03
Utvecklare Uzzy
E-post [email protected]
Betalningssätt free
Stödda Språk 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"
        }
    ]
}