TradingNotes

Attach floating notes to your TradingView's stock lists

什么是TradingNotes?

TradingNotes是由XYZET开发的Chrome扩展程序,该扩展的主要功能是“Attach floating notes to your TradingView's stock lists”。

扩展截图

screenshot
screenshot
screenshot
screenshot

下载TradingNotes扩展crx文件

下载TradingNotes扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        View your stocks comments, at a glance, with colorful floating notes inside your TradingView platform.

Features:
- Show stock stats on ticker hover: Daily update of stocks statistics, like "Market cap" and "Shares float".
- 3 Notes colors to choose from.
- Wide note option.
- Trim long text option.
- Make use of TradingView's native notes system.
- Easy tick to enable or disable the feature.
- Show stock stats: Daily update of stocks statistics, like "Market cap" and "Shares float".

How to use ?
- Install the plugin.
- For the first time after install, refresh the TradingView web page.
- Mouse over the stock ticker to show your notes.
- For more information visit: https://www.xyzet.me/tradingnotes

* "Show stock stats" feature, automatically fetches the stock's statistics from available information found on the web. This information is unverified and you should always verify it yourself before making any trade decision. 

* TradingView is a leading charting platform and social network that is used by traders and investors to analyze the stock markets and other financial assets.                    

扩展基本信息

名称 TradingNotes TradingNotes
ID dnjklknajgggmmbhhkaeogobiibkjmgk
官方URL https://chromewebstore.google.com/detail/tradingnotes/dnjklknajgggmmbhhkaeogobiibkjmgk
简介 Attach floating notes to your TradingView's stock lists
文件大小 1.07 MB
安装次数 149
当前版本 3.6
更新时间 2023-11-11
上架时间 2022-01-15
评分 4.50/5 共8次评分
开发者 XYZET
电子邮箱 [email protected]
付费类型 free
扩展官网 https://www.xyzet.me/tradingnotes
帮助页面URL https://www.xyzet.me/tradingnotes
隐私政策页面URL https://www.xyzet.me/tradingnotes
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "TradingNotes",
    "description": "Attach floating notes to your TradingView's stock lists",
    "version": "3.6",
    "manifest_version": 3,
    "permissions": [
        "storage"
    ],
    "host_permissions": [
        "https:\/\/www.tradingview\/*",
        "https:\/\/finviz.com\/*",
        "https:\/\/elite.finviz.com\/*",
        "https:\/\/finance.yahoo.com\/*",
        "https:\/\/guce.yahoo.com\/*",
        "https:\/\/*.yahoo.com\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.tradingview.com\/*",
                "https:\/\/tradingview.com\/*"
            ],
            "js": [
                "content.js"
            ],
            "css": [
                "fix.css"
            ],
            "run_at": "document_end"
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "icon16.png",
                "icon48.png",
                "icon128.png"
            ],
            "matches": [
                "https:\/\/www.tradingview\/*",
                "https:\/\/tradingview.com\/*"
            ]
        }
    ],
    "background": {
        "service_worker": ".\/background.js",
        "type": "module"
    },
    "action": {
        "default_title": "TradingNotes",
        "default_icon": "icon.png",
        "default_popup": "popup.html"
    },
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    }
}