TV Enhance
Chrome Extension to make working with TradingView charts a little bit more intuitive.
什么是TV Enhance?
TV Enhance是由trading_peter开发的Chrome扩展程序,该扩展的主要功能是“Chrome Extension to make working with TradingView charts a little bit more intuitive.”。
扩展截图
下载TV Enhance扩展crx文件
下载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 |
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" ] } |