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
官方網址 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
電子郵箱 [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"
    ]
}