TV Enhance

Chrome Extension to make working with TradingView charts a little bit more intuitive.

TV Enhanceとは何ですか?

TV Enhanceはtrading_peterによって開発されたChromeの拡張機能で、その主な機能は「Chrome Extension to make working with TradingView charts a little bit more intuitive.」です。

拡張機能のスクリーンショット

screenshot

TV Enhance拡張機能のCRXファイルをダウンロード

TV Enhance拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        Set custom shortcuts to quickly select drawing tools, toggle magnet mode and toggle shape visibility. Clicking on the plus icon at the price scale copies price under line into the clipboard. Right click the extension icon and choose "options" to set shortcuts.                    

拡張機能の基本情報

名前 TV Enhance TV Enhance
ID pjgagljfhhfaoknahbklgebpfagdppbf
公式URL https://chromewebstore.google.com/detail/tv-enhance/pjgagljfhhfaoknahbklgebpfagdppbf
説明 Chrome Extension to make working with TradingView charts a little bit more intuitive.
ファイルサイズ 102 KB
インストール数 98
現在のバージョン 0.0.5
最終更新日 2021-09-26
公開日 2019-07-01
評価 5.00/5 合計 1 レビュー
開発者 trading_peter
Eメール [email protected]
支払い方法 free
拡張機能のウェブサイト https://github.com/pkaske/tv-enhance
ヘルプページのURL https://github.com/pkaske/tv-enhance/issues
対応言語 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "TV Enhance",
    "version": "0.0.5",
    "manifest_version": 2,
    "description": "Chrome Extension to make working with TradingView charts a little bit more intuitive.",
    "homepage_url": "https:\/\/github.com\/pkaske\/tv-enhance",
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "default_locale": "en",
    "background": {
        "page": "src\/bg\/background.html",
        "persistent": false
    },
    "options_page": "src\/options\/index.html",
    "permissions": [
        "storage",
        "https:\/\/www.tradingview.com\/chart\/*"
    ],
    "content_scripts": [
        {
            "run_at": "document_idle",
            "matches": [
                "https:\/\/www.tradingview.com\/chart\/*"
            ],
            "js": [
                "src\/inject\/injecter.js"
            ]
        }
    ],
    "web_accessible_resources": [
        "src\/inject\/inject.js"
    ]
}