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.".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Yahoo Finance Option Open Interest Extension
قم بتنزيل ملفات الامتداد Yahoo Finance Option Open Interest Extension بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
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 |
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" } ] } |