Deribit Interface Cleaner
On/Off some elements of the interface of the Deribit Exchange.
什么是Deribit Interface Cleaner?
Deribit Interface Cleaner是由SavosRU开发的Chrome扩展程序,该扩展的主要功能是“On/Off some elements of the interface of the Deribit Exchange.”。
扩展截图
下载Deribit Interface Cleaner扩展crx文件
下载Deribit Interface Cleaner扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Отключает/включает при необходимости такие блоки в интерфейсе биржи Дерибит:
- Торговая Панель
- ОрдерБук
- Последние Трейды
- Сообщение про то, что мы на ТестНет
- промежуточный блок перед окном ПОЗИЦИИ-ОРДЕРА и так далее
Больше не делает ничего!
В первой версии НЕ СОХРАНЯЕТ результаты. То есть каждый раз надо отключать или включать нужные блоки самостоятельно. Может никому кроме меня и не нужен - но я пользуюсь ;-) 扩展基本信息
| 名称 | |
| ID | papmblepfaaabioeafihhhmimhcdlgbk |
| 官方URL | https://chromewebstore.google.com/detail/deribit-interface-cleaner/papmblepfaaabioeafihhhmimhcdlgbk |
| 简介 | On/Off some elements of the interface of the Deribit Exchange. |
| 文件大小 | 596 KB |
| 安装次数 | 27 |
| 当前版本 | 0.1.0 |
| 更新时间 | 2019-10-12 |
| 上架时间 | 2019-10-12 |
| 评分 | 5.00/5 共4次评分 |
| 开发者 | SavosRU |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 隐私政策页面URL | https://bitmexhelper.home.blog/privacy-policy |
| 支持的语言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"version": "0.1.0",
"name": "Deribit Interface Cleaner",
"short_name": "SavDerInClen",
"description": "On\/Off some elements of the interface of the Deribit Exchange.",
"content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com; object-src 'self';",
"background": {
"persistent": true,
"scripts": [
"a_global_vars.js",
"a_back_cleaner.js"
],
"matches": [
"https:\/\/www.deribit.com\/*",
"https:\/\/deribit.com\/*",
"https:\/\/test.deribit.com\/*",
"https:\/\/testapp.deribit.com\/*",
"https:\/\/test-static.deribit.com\/*",
"https:\/\/static.deribit.com\/*"
]
},
"browser_action": {
"default_icon": "images\/Logo.png",
"default_popup": "a_popup.html",
"matches": [
"https:\/\/www.deribit.com\/*",
"https:\/\/deribit.com\/*",
"https:\/\/test.deribit.com\/*",
"https:\/\/testapp.deribit.com\/*",
"https:\/\/test-static.deribit.com\/*",
"https:\/\/static.deribit.com\/*"
]
},
"content_scripts": [
{
"all_frames": true,
"run_at": "document_start",
"js": [
"a_global_vars.js",
"a_front_cleaner.js"
],
"matches": [
"https:\/\/www.deribit.com\/*",
"https:\/\/deribit.com\/*",
"https:\/\/test.deribit.com\/*",
"https:\/\/testapp.deribit.com\/*",
"https:\/\/test-static.deribit.com\/*",
"https:\/\/static.deribit.com\/*"
]
}
],
"manifest_version": 2,
"permissions": [
"activeTab",
"tabs",
"storage",
"unlimitedStorage",
"https:\/\/www.deribit.com\/*",
"https:\/\/deribit.com\/*",
"https:\/\/test.deribit.com\/*",
"https:\/\/testapp.deribit.com\/*",
"https:\/\/test-static.deribit.com\/*",
"https:\/\/static.deribit.com\/*"
],
"storage": {
"managed_schema": "managed-storage-schema.json"
},
"web_accessible_resources": [
"images\/Logo.png"
],
"icons": {
"16": "images\/Logo16x16.png",
"32": "images\/Logo32x32.png",
"48": "images\/Logo48x48.png",
"64": "images\/Logo64x64.png",
"128": "images\/Logo128x128.png"
}
} | |