TV Enhance

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

TV Enhance là gì?

TV Enhance là một tiện ích mở rộng Chrome được phát triển bởi trading_peter, và tính năng chính của nó là "Chrome Extension to make working with TradingView charts a little bit more intuitive.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng TV Enhance

Tải xuống các tệp mở rộng TV Enhance dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên TV Enhance TV Enhance
ID pjgagljfhhfaoknahbklgebpfagdppbf
URL Chính Thức https://chromewebstore.google.com/detail/tv-enhance/pjgagljfhhfaoknahbklgebpfagdppbf
Mô tả Chrome Extension to make working with TradingView charts a little bit more intuitive.
Kích Thước Tệp 102 KB
Số Lần Cài Đặt 98
Phiên Bản Hiện Tại 0.0.5
Cập Nhật Lần Cuối 2021-09-26
Ngày Phát Hành 2019-07-01
Đánh Giá 5.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển trading_peter
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/pkaske/tv-enhance
URL Trang Trợ Giúp https://github.com/pkaske/tv-enhance/issues
Ngôn Ngữ Được Hỗ Trợ 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"
    ]
}