TV Enhance

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

TV Enhance क्या है?

TV Enhance trading_peter द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Chrome Extension to make working with TradingView charts a little bit more intuitive."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में TV Enhance एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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"
    ]
}