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