TradingviewPlus

Changes line color according to current timeframe, price scale scrolling, line style changing, and various other hotkeys.

TradingviewPlus란 무엇입니까?

TradingviewPlus은(는) Tiqur에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Changes line color according to current timeframe, price scale scrolling, line style changing, and various other hotkeys."입니다.

확장 프로그램 스크린샷

screenshot

TradingviewPlus 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        Press "m" to open the menu.

Features:
Auto Timeframe Colors:
When active, automatically changes drawing colors depending on which timeframe is active.

Ad Blocker:
When active, attempts to block all advertisements.

Change Line Style:
Keybind to easily change a drawing's line style (solid, dashed, etc.)

Change Line Width:
Keybind to easily change a drawing's line width (1px, 2px, etc.)

Toggle TVP Menu:
Keybind to toggle TradingViewPlus's built-in side menu.

Quick Toolbar:
Gives quick access to the favorited tools toolbar using keys 1-9.

Scroll Timeframes:
When active, allows you to scroll through timeframes in order using Tab + Scroll.

Scroll Price Scale:
When active, allows you to scroll the chart's vertical scale using Shift + Scroll.

Zoom Chart:
When active, allows you to scroll BOTH of the chart's scales at the same time using Ctrl + Shift + Scroll.

Additional Editable Keybinds
Toggle Auto Scale
Toggle Log Scale
Delete Drawing
Open Symbol Search
Invert Scale
Scroll To Most Recent Bar
Move Time Left
Move Time Right                    

확장 프로그램 기본 정보

이름 TradingviewPlus TradingviewPlus
ID pkcgjgllebhppgegpedlhjmabmnpcpec
공식 URL https://chromewebstore.google.com/detail/tradingviewplus/pkcgjgllebhppgegpedlhjmabmnpcpec
설명 Changes line color according to current timeframe, price scale scrolling, line style changing, and various other hotkeys.
파일 크기 41.63 KB
설치 횟수 131
현재 버전 5.0.3
최근 업데이트 2023-11-16
출시 날짜 2022-08-26
평점 5.00/5 총 5 개의 평점
개발자 Tiqur
이메일 [email protected]
결제 유형 free
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "TradingviewPlus",
    "version": "5.0.3",
    "author": "Tiqur",
    "description": "Changes line color according to current timeframe, price scale scrolling, line style changing, and various other hotkeys.",
    "permissions": [
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.tradingview.com\/chart\/*"
            ],
            "js": [
                "dist\/lib\/purify.min.js",
                "dist\/utils\/isLightMode.js",
                "dist\/utils\/snackbar.js",
                "dist\/utils\/Hotkey.js",
                "dist\/utils\/waitForElem.js",
                "dist\/utils\/Feature.js",
                "dist\/utils\/fuzzySearch.js",
                "dist\/utils\/TVPMenu.js",
                "dist\/utils\/ContextMenuListItem.js",
                "dist\/utils\/ContextMenu.js",
                "dist\/utils\/checkDuplicateHotkeys.js",
                "dist\/features\/AutoScale.js",
                "dist\/features\/LogScale.js",
                "dist\/features\/AutoTimeframeColors.js",
                "dist\/features\/AdBlocker.js",
                "dist\/features\/CopyPrice.js",
                "dist\/features\/DeleteDrawing.js",
                "dist\/features\/SymbolSearch.js",
                "dist\/features\/QuickToolbar.js",
                "dist\/features\/InvertScale.js",
                "dist\/features\/LineStyle.js",
                "dist\/features\/LineWidth.js",
                "dist\/features\/Replay.js",
                "dist\/features\/ScrollPriceScale.js",
                "dist\/features\/ScrollToMostRecentBar.js",
                "dist\/features\/ToggleMenu.js",
                "dist\/features\/MoveTimeLeft.js",
                "dist\/features\/MoveTimeRight.js",
                "dist\/features\/TimeframeScroll.js",
                "dist\/features\/ZoomChart.js",
                "dist\/main.js"
            ],
            "css": [
                "dist\/tvp-menu.css",
                "dist\/tvp-snackbar.css",
                "dist\/tvp-background.css",
                "dist\/tvp-context-menu.css",
                "dist\/tvp-menu-handle.css",
                "dist\/tvp-light.css"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "public\/menu.html"
            ],
            "matches": [
                ""
            ]
        }
    ]
}