OTC Trading Assistant

This is a due diligence tool used by OTCMethod.com members

什么是OTC Trading Assistant?

OTC Trading Assistant是由tony开发的Chrome扩展程序,该扩展的主要功能是“This is a due diligence tool used by OTCMethod.com members”。

扩展截图

screenshot
screenshot
screenshot

下载OTC Trading Assistant扩展crx文件

下载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 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"
        }
    ]
}