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.

Qu'est-ce que Yahoo Finance Option Open Interest Extension ?

Yahoo Finance Option Open Interest Extension est une extension Chrome développée par Uzzy, et sa fonction principale est "An extension that plugs into Yahoo Finance Option Straddle pages to help view the weight ratio of call and put open interest.".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Yahoo Finance Option Open Interest Extension

Téléchargez les fichiers d'extension Yahoo Finance Option Open Interest Extension au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

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

Informations de Base sur l'Extension

Nom Yahoo Finance Option Open Interest Extension Yahoo Finance Option Open Interest Extension
ID bllohaoomcnadgimabnnjalbnkbjmaem
URL Officiel https://chromewebstore.google.com/detail/yahoo-finance-option-open/bllohaoomcnadgimabnnjalbnkbjmaem
Description An extension that plugs into Yahoo Finance Option Straddle pages to help view the weight ratio of call and put open interest.
Taille du Fichier 73.24 KB
Nombre d'Installations 34
Version Actuelle 1.0.0
Dernière Mise à Jour 2023-04-03
Date de Publication 2023-04-03
Développeur Uzzy
Email [email protected]
Type de Paiement free
Langues Prises en Charge 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"
        }
    ]
}