TV Enhance

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

TV Enhanceคืออะไร?

TV Enhance เป็นส่วนขยายของ Chrome ที่พัฒนาโดย trading_peter และคุณลักษณะหลักของมันคือ "Chrome Extension to make working with TradingView charts a little bit more intuitive."

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย TV Enhance

ดาวน์โหลดไฟล์ส่วนขยาย 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
อีเมล [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"
    ]
}