OTC Trading Assistant
This is a due diligence tool used by OTCMethod.com members
OTC Trading Assistantคืออะไร?
OTC Trading Assistant เป็นส่วนขยายของ Chrome ที่พัฒนาโดย tony และคุณลักษณะหลักของมันคือ "This is a due diligence tool used by OTCMethod.com members"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย OTC Trading Assistant
ดาวน์โหลดไฟล์ส่วนขยาย OTC Trading Assistant ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
This modifies the Investors iHub Trade Alerts scanner by adding a $volume calculation, a link to the Trading View chart, and a link to the Security Details tab for the stock symbol on the OTC Markets website. It also allows you to sort the table by $Volume by clicking on the column name. Make sure to click the Fix Missing Columns button to make sure you can sort by $Volume correctly. Additionally, you are now able to scroll infinitely without click on "More" on the Most Active, Advancers, and Decliners list on the OTC Markets website. Brought to you by OTCMethod.com.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | OTC Trading Assistant |
ID | bagfflialbfcfmfnhcidnhhggpmcpbgk |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/otc-trading-assistant/bagfflialbfcfmfnhcidnhhggpmcpbgk |
คำอธิบาย | This is a due diligence tool used by OTCMethod.com members |
ขนาดไฟล์ | 11.04 KB |
จำนวนการติดตั้ง | 142 |
เวอร์ชันปัจจุบัน | 2.2 |
อัปเดตครั้งล่าสุด | 2021-02-15 |
วันที่เผยแพร่ | 2020-09-16 |
คะแนน | 5.00/5 รวมทั้งหมด 2 คะแนน |
ผู้พัฒนา | tony |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://www.otcmethod.com |
ภาษาที่รองรับ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "author": { "name": "StockGapper", "url": "https:\/\/www.otcmethod.com" }, "manifest_version": 2, "name": "OTC Trading Assistant", "description": "This is a due diligence tool used by OTCMethod.com members", "version": "2.2", "icons": { "48": "images\/icon.png" }, "incognito": "split", "content_scripts": [ { "matches": [ "*:\/\/ih.advfn.com\/p.php?pid=traderalerts" ], "js": [ "js\/inject.js" ], "run_at": "document_end" }, { "matches": [ "*:\/\/*.otcmarkets.com\/stock\/*\/security*" ], "js": [ "js\/otcmarkets_inject.js" ], "run_at": "document_end" }, { "matches": [ "*:\/\/*.otcmarkets.com\/market-activity\/current-market\/*\/active\/dollarVolume", "*:\/\/*.otcmarkets.com\/market-activity\/current-market\/*\/advancers\/1", "*:\/\/*.otcmarkets.com\/market-activity\/current-market\/*\/decliners\/1" ], "js": [ "js\/otcmarkets_market_activity.js" ], "run_at": "document_end" }, { "matches": [ "*:\/\/ih.advfn.com\/stock-market\/*\/*\/trades" ], "js": [ "js\/stock-market__trades_inject.js" ], "run_at": "document_end" }, { "matches": [ "*:\/\/ih.advfn.com\/markets\/*\/regular", "*:\/\/ih.advfn.com\/markets\/*\/regular\/percentage-gainers", "*:\/\/ih.advfn.com\/markets\/*\/afterhours", "*:\/\/ih.advfn.com\/markets\/*\/afterhours\/percentage-gainers", "*:\/\/ih.advfn.com\/markets\/*\/premarket", "*:\/\/ih.advfn.com\/markets\/*\/premarket\/percentage-gainers" ], "js": [ "js\/markets_inject.js" ], "css": [ "css\/markets_inject.css" ], "run_at": "document_end" } ] } |