TradingView Watchlist Rotator

Rotate through each item in your TradingView watchlist of your choice in one tab per watchlist

TradingView Watchlist Rotator란 무엇입니까?

TradingView Watchlist Rotator은(는) Lightning Fast Coder에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Rotate through each item in your TradingView watchlist of your choice in one tab per watchlist"입니다.

확장 프로그램 스크린샷

screenshot

TradingView Watchlist Rotator 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Create slideshow of stocks in your tradingview watchlist in a tab with custom duration to display each chart. 
You can also select in which layout these charts should be shown. 
Easy to use as it requires only 3 clicks
Watch the video for demo                    

확장 프로그램 기본 정보

이름 TradingView Watchlist Rotator TradingView Watchlist Rotator
ID oodmglmdhijlggmhghkcagfoceendlkc
공식 URL https://chrome.google.com/webstore/detail/oodmglmdhijlggmhghkcagfoceendlkc
설명 Rotate through each item in your TradingView watchlist of your choice in one tab per watchlist
파일 크기 46.28 KB
설치 횟수 531
현재 버전 1.2.0
최근 업데이트 2021-02-19
출시 날짜 2020-02-26
평점 4.14/5 총 7 개의 평점
개발자 Lightning Fast Coder
이메일 [email protected]
결제 유형 free
개인정보 보호 정책 페이지 URL https://gpzweb.com/privacy-policy
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "TradingView Watchlist Rotator",
    "description": "Rotate through each item in your TradingView watchlist of your choice in one tab per watchlist",
    "version": "1.2.0",
    "manifest_version": 2,
    "permissions": [
        "tabs",
        "https:\/\/*.tradingview.com\/*"
    ],
    "browser_action": {
        "default_icon": "icon2.png",
        "default_popup": "\/html\/popup.html"
    },
    "icons": {
        "128": "icon.png"
    },
    "content_scripts": [
        {
            "js": [
                "\/js\/jquery-2.1.4.min.js",
                "\/js\/script.js"
            ],
            "run_at": "document_start",
            "matches": [
                "https:\/\/*.tradingview.com\/*"
            ]
        }
    ],
    "background": {
        "scripts": [
            "\/js\/jquery-2.1.4.min.js",
            "\/js\/bg.js"
        ]
    }
}