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 مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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
عنوان صفحة المساعدة 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"
    ]
}