migrate
This commit is contained in:
0
Pizipus/.gitkeep
Normal file
0
Pizipus/.gitkeep
Normal file
0
Pizipus/icons/.gitkeep
Normal file
0
Pizipus/icons/.gitkeep
Normal file
BIN
Pizipus/icons/icon128.png
Normal file
BIN
Pizipus/icons/icon128.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 1.2 KiB |
BIN
Pizipus/icons/icon16.png
Normal file
BIN
Pizipus/icons/icon16.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 523 B |
BIN
Pizipus/icons/icon19.png
Normal file
BIN
Pizipus/icons/icon19.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 585 B |
BIN
Pizipus/icons/icon48.png
Normal file
BIN
Pizipus/icons/icon48.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 988 B |
23
Pizipus/manifest.json
Normal file
23
Pizipus/manifest.json
Normal file
@@ -0,0 +1,23 @@
|
||||
{
|
||||
"name": "Pizipus",
|
||||
"version": "1.1.0",
|
||||
"manifest_version": 2,
|
||||
"description": "Pizipus -- help your a...",
|
||||
"homepage_url": "https://github.com/AM-EO/izipus",
|
||||
"icons": {
|
||||
"16": "icons/icon16.png",
|
||||
"48": "icons/icon48.png",
|
||||
"128": "icons/icon128.png"
|
||||
},
|
||||
"browser_action": {
|
||||
"default_icon": "icons/icon19.png",
|
||||
"default_title": "browser action demo",
|
||||
"default_popup": "src/browser_action/popup.html"
|
||||
},
|
||||
"permissions": [
|
||||
"clipboardRead",
|
||||
"clipboardWrite",
|
||||
"contextMenus",
|
||||
"storage"
|
||||
]
|
||||
}
|
||||
0
Pizipus/src/.gitkeep
Normal file
0
Pizipus/src/.gitkeep
Normal file
0
Pizipus/src/browser_action/.gitkeep
Normal file
0
Pizipus/src/browser_action/.gitkeep
Normal file
9
Pizipus/src/browser_action/popup.css
Normal file
9
Pizipus/src/browser_action/popup.css
Normal file
@@ -0,0 +1,9 @@
|
||||
body{
|
||||
margin: 0;
|
||||
line-height: 1;
|
||||
min-width: 300px;
|
||||
max-width: 3000px;
|
||||
width: 300px;
|
||||
font-family: helvetica;
|
||||
user-select: none;
|
||||
}
|
||||
385
Pizipus/src/browser_action/popup.html
Normal file
385
Pizipus/src/browser_action/popup.html
Normal file
@@ -0,0 +1,385 @@
|
||||
<!doctype html>
|
||||
<html lang="ru">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<link rel="stylesheet" href="popup.css">
|
||||
</head>
|
||||
<body>
|
||||
<script src="popup.js"></script>
|
||||
|
||||
<div class="container">
|
||||
<style>
|
||||
.docs {
|
||||
margin: 16px 0;
|
||||
color: white;
|
||||
border: 1px solid #dddddd;
|
||||
border-radius: 3px;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.docs>span {
|
||||
background: #205081;
|
||||
display: block;
|
||||
padding: 6px 10px;
|
||||
font-size: 9pt;
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
.docs>ul {
|
||||
margin: 0;
|
||||
padding: 8px 20px;
|
||||
}
|
||||
|
||||
.docs>ul>li {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
.docs>ul>li>a {
|
||||
color: #205081;
|
||||
font-size: 9pt;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
.docs>ul>li>a:hover {
|
||||
text-decoration: underline;
|
||||
}
|
||||
|
||||
.btn-container {
|
||||
border-radius: 3px;
|
||||
margin: 8px 0;
|
||||
background: #1186E3;
|
||||
overflow: hidden;
|
||||
display: table;
|
||||
table-layout: fixed;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.btn {
|
||||
display: inline-block;
|
||||
margin: 6px;
|
||||
padding: 6px 20px;
|
||||
border-radius: 3px;
|
||||
outline: none;
|
||||
color: white;
|
||||
background: #FF5405;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
.btn.inline {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
height: 29px;
|
||||
vertical-align: middle;
|
||||
border-radius: 0;
|
||||
display: table-cell;
|
||||
text-align: center;
|
||||
font-size: 9pt;
|
||||
}
|
||||
|
||||
|
||||
.input-container {
|
||||
border-radius: 3px;
|
||||
margin: 8px 0;
|
||||
background: #f5f5f5;
|
||||
overflow: hidden;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
|
||||
.input-container>input {
|
||||
height: 38px;
|
||||
border: none;
|
||||
padding: 6px 20px;
|
||||
outline: none;
|
||||
color: #545454;
|
||||
background: rgba(0, 0, 0, 0.08);
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.input-container>input:hover,
|
||||
.input-container>input:active {
|
||||
background: rgba(0, 0, 0, 0.02);
|
||||
}
|
||||
|
||||
|
||||
|
||||
/*
|
||||
* COLORS
|
||||
*/
|
||||
|
||||
.fa-lime {
|
||||
background: #1186E3;
|
||||
}
|
||||
|
||||
.fa-lime:hover {
|
||||
background: #1295F8;
|
||||
}
|
||||
|
||||
.fa-lime:active {
|
||||
background: #0E75C4;
|
||||
}
|
||||
|
||||
.istat {
|
||||
background: #9e2170;
|
||||
}
|
||||
|
||||
.istat:hover {
|
||||
background: #db309c;
|
||||
}
|
||||
|
||||
.istat:active {
|
||||
background: #6a154b;
|
||||
}
|
||||
|
||||
|
||||
.fa-spam,
|
||||
.fa-interactive {
|
||||
background: #213568;
|
||||
}
|
||||
|
||||
.fa-spam:hover,
|
||||
.fa-interactive:hover {
|
||||
background: #2D498F;
|
||||
}
|
||||
|
||||
.fa-spam:active,
|
||||
.fa-interactive:active {
|
||||
background: #192950;
|
||||
}
|
||||
|
||||
.mnprange {
|
||||
background: #EB4A06;
|
||||
}
|
||||
|
||||
.mnprange:hover {
|
||||
background: #FF5405;
|
||||
}
|
||||
|
||||
.mnprange:active {
|
||||
background: #D14204;
|
||||
}
|
||||
|
||||
.monitoring {
|
||||
background: #252525;
|
||||
}
|
||||
|
||||
.monitoring:hover {
|
||||
background: #353434;
|
||||
}
|
||||
|
||||
.monitoring:active {
|
||||
background: #1A1A1A;
|
||||
}
|
||||
</style>
|
||||
|
||||
|
||||
|
||||
<div id="techb2b-custom-app">
|
||||
<div class="btn-container">
|
||||
<a target="_blank" class="btn inline monitoring"
|
||||
href="https://monitoring-ibs.i-free.ru/index?min_priority=not_classified&acknowledged=unacknowledged&limit=1000&offset=0">Monitoring</a>
|
||||
</div>
|
||||
|
||||
<div class="btn-container">
|
||||
<a target="_blank" class="btn inline fa-lime" href="https://filteradmin-lime.i-dgtl.ru/">Lime</a>
|
||||
<!--a target="_blank" class="btn inline fa-interactive"
|
||||
href="https://filteradmin.i-free.ru/filteradmin/">Interactive</a-->
|
||||
</div>
|
||||
<div class="btn-container">
|
||||
<a target="_blank" class="btn inline istat" href="https://istat2.i-dgtl.ru/">iStat</a>
|
||||
</div>
|
||||
|
||||
|
||||
<!--div class="input-container mnprange-input">
|
||||
<input id="msisdn" type="tel" class="msisdn" placeholder="Enter MSISDN"
|
||||
onkeypress="if(event.keyCode == 13){window.open('https://techb2b:Eg9tei9S@mnprange.i-free.ru/api/v2.1/resolve/'+document.getElementById('msisdn').value,'_blank');}">
|
||||
</div>
|
||||
|
||||
<div class="input-container mnprange-input">
|
||||
<input id="msid" class="msisdn" placeholder="Enter MSID"
|
||||
onkeypress="if(event.keyCode == 13){window.open('https://filteradmin-lime.i-dgtl.ru/#/messagesLog/detail/'+document.getElementById('msid').value,'_blank');}">
|
||||
</div-->
|
||||
|
||||
|
||||
<div class="docs">
|
||||
|
||||
<span>Инструменты</span>
|
||||
<ul>
|
||||
<li>
|
||||
<a target="_blank" href="https://grafana.i-dgtl.ru/">Grafana</a>
|
||||
</li>
|
||||
<li>
|
||||
<a target="_blank" href="https://direct-kibana.i-dgtl.ru/">Direct Kibana</a>
|
||||
</li>
|
||||
<li>
|
||||
<a target="_blank" href="https://metrics-insight.i-dgtl.ru/">Metrics Insight</a>
|
||||
</li>
|
||||
<li>
|
||||
<a target="_blank" href="https://gitlab.i-free.com/">GitLab</a>
|
||||
</li>
|
||||
<li>
|
||||
<a target="_blank" href="https://connectorconf-ui.i-dgtl.ru/">Connector Conf UI</a>
|
||||
</li>
|
||||
<li>
|
||||
<a target="_blank" href="https://achtung.i-dgtl.ru/">Achtung</a>
|
||||
</li>
|
||||
<li>
|
||||
<a target="_blank" href="https://oncall.i-dgtl.ru/">OnCall</a>
|
||||
</li>
|
||||
<li>
|
||||
<a target="_blank" href="https://stopword-admin.i-dgtl.ru/">Stopword Admin</a>
|
||||
</li>
|
||||
<li>
|
||||
<a target="_blank" href="https://lps.i-dgtl.ru/">LPS Cleaner</a>
|
||||
</li>
|
||||
<li>
|
||||
<a target="_blank" href="https://mnpranges-int.i-free.ru/">MNP Ranges INT</a>
|
||||
</li>
|
||||
<li>
|
||||
<a target="_blank" href="https://app.testelium.com/">Testelium</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
|
||||
|
||||
|
||||
<span>Links</span>
|
||||
<ul>
|
||||
<li>
|
||||
<a target="_blank" href="https://docs.i-free.com/pages/viewpage.action?pageId=46367114">Запросы в
|
||||
шлюзы</a>
|
||||
</li>
|
||||
<li>
|
||||
<a target="_blank" href="https://docs.i-free.com/pages/viewpage.action?pageId=29198123">Коды ошибок</a>
|
||||
</li>
|
||||
<li>
|
||||
<a target="_blank" href="https://docs.i-free.com/pages/viewpage.action?pageId=26217333">График</a>
|
||||
</li>
|
||||
<!--li>
|
||||
<a target="_blank" href="https://docs.i-free.com/pages/viewpage.action?pageId=74123147">Календарь
|
||||
работ</a>
|
||||
</li-->
|
||||
|
||||
<li>
|
||||
<a target="_blank"
|
||||
href="https://jira.i-dgtl.ru/CreateIssueDetails!init.jspa?pid=10000&issuetype=10203&description=%0A%0ABest regards,%0AMonitoring and Technical Support i-Digital&customfield_10304=techsupp@i-free.com&customfield_10305=support@i-dgtl.ru&">Написать
|
||||
в techsupp</a>
|
||||
</li>
|
||||
<li>
|
||||
<a target="_blank"
|
||||
href="https://jira.i-dgtl.ru/CreateIssueDetails!init.jspa?pid=10000&issuetype=10203&description=%0AКоллеги, здравствуйте!%0A%0AНаблюдаем разрыв соединения по подключению с systemID=%0A%0AПросьба уточнить, является ли ситуация штатной.%0A%0AСпасибо!%0A%0ABest%20regards,%0AMonitoring%20and%20Technical%20Support%20i-Digital&customfield_10305=support@i-dgtl.ru&summary=Разрыв+соединения">Написать
|
||||
про разрыв соединения i-Digital</a>
|
||||
</li>
|
||||
<li>
|
||||
<a target="_blank"
|
||||
href="https://jira.i-dgtl.ru/CreateIssueDetails!init.jspa?pid=11601&issuetype=11800&description=%0AColleagues,%20hello!%0A%0AWe%20observe%20connection%20breakage%20on%20connection%20with%20systemID=%0A%0APlease%20clarify%20if%20this%20is%20a%20standard%20situation.%0A%0AThank%20you!%0A%0ABest%20regards,%0AMonitoring%20and%20Technical%20Support%20Revicom&customfield_10305=support@revicom.ltd&summary=Connection+breakdown">Написать
|
||||
про разрыв соединения Revicom</a>
|
||||
</li>
|
||||
<li>
|
||||
<a target="_blank"
|
||||
href="https://jira.i-dgtl.ru/CreateIssueDetails!init.jspa?pid=10000&issuetype=10203&description=%0A%D0%97%D0%B4%D1%80%D0%B0%D0%B2%D1%81%D1%82%D0%B2%D1%83%D0%B9%D1%82%D0%B5,%20%D0%BA%D0%BE%D0%BB%D0%BB%D0%B5%D0%B3%D0%B8.%0A%0A%D0%9D%D0%B0%D1%88%D0%B5%D0%B9%20%D1%81%D0%B8%D1%81%D1%82%D0%B5%D0%BC%D0%BE%D0%B9%20%D0%BE%D0%B1%D0%BD%D0%B0%D1%80%D1%83%D0%B6%D0%B5%D0%BD%D0%BE%20%D0%B1%D0%BE%D0%BB%D1%8C%D1%88%D0%BE%D0%B5%20%D0%BA%D0%BE%D0%BB%D0%B8%D1%87%D0%B5%D1%81%D1%82%D0%B2%D0%BE%20%D1%81%D0%BE%D0%BE%D0%B1%D1%89%D0%B5%D0%BD%D0%B8%D0%B9%20%D0%BD%D0%B0%20%D1%81%D0%BB%D0%B5%D0%B4%D1%83%D1%8E%D1%89%D0%B8%D0%B5%20%D0%BD%D0%BE%D0%BC%D0%B5%D1%80%D0%B0%20%D0%B0%D0%B1%D0%BE%D0%BD%D0%B5%D0%BD%D1%82%D0%BE%D0%B2:%0A%0A%D0%9F%D1%80%D0%BE%D1%81%D0%B8%D0%BC,%20%D0%BF%D0%BE%D0%B6%D0%B0%D0%BB%D1%83%D0%B9%D1%81%D1%82%D0%B0,%20%D0%BF%D1%80%D0%BE%D0%B2%D0%B5%D1%80%D0%B8%D1%82%D1%8C%20%D0%B8%20%D1%81%D0%BE%D0%BE%D0%B1%D1%89%D0%B8%D1%82%D1%8C%20%D1%8F%D0%B2%D0%BB%D1%8F%D0%B5%D1%82%D1%81%D1%8F%20%D0%BB%D0%B8%20%D0%B4%D0%B0%D0%BD%D0%BD%D0%B0%D1%8F%20%D1%81%D0%B8%D1%82%D1%83%D0%B0%D1%86%D0%B8%D1%8F%20%D1%88%D1%82%D0%B0%D1%82%D0%BD%D0%BE%D0%B9.%0A%0A%D0%A1%D0%BF%D0%B0%D1%81%D0%B8%D0%B1%D0%BE!%0A%0ABest%20regards,%0AMonitoring%20and%20Technical%20Support%20i-Digital&customfield_10305=support@i-dgtl.ru&summary=%D0%91%D0%BE%D0%BB%D1%8C%D1%88%D0%BE%D0%B5+%D0%BA%D0%BE%D0%BB%D0%B8%D1%87%D0%B5%D1%81%D1%82%D0%B2%D0%BE+%D1%81%D0%BE%D0%BE%D0%B1%D1%89%D0%B5%D0%BD%D0%B8%D0%B9">Большое
|
||||
количество сообщений</a>
|
||||
</li>
|
||||
</ul>
|
||||
<span>Fastgate</span>
|
||||
<ul>
|
||||
<li>
|
||||
<a target="_blank" href="https://docs.i-free.com/pages/viewpage.action?pageId=60785984">Коды ошибок
|
||||
FG</a>
|
||||
</li>
|
||||
<li>
|
||||
<a target="_blank" href="https://docs.i-free.com/pages/viewpage.action?pageId=82216773">DetMir</a>
|
||||
</li>
|
||||
<li>
|
||||
<a target="_blank" href="https://docs.i-free.com/pages/viewpage.action?pageId=60792140">OTP</a>
|
||||
</li>
|
||||
<li>
|
||||
<a target="_blank" href="https://docs.i-free.com/pages/viewpage.action?pageId=53018819">Citi</a>
|
||||
</li>
|
||||
<li>
|
||||
<a target="_blank" href="https://docs.i-free.com/pages/viewpage.action?pageId=89260391">РН Банк</a>
|
||||
</li>
|
||||
</ul>
|
||||
<span>Direct</span>
|
||||
<ul>
|
||||
<li>
|
||||
<a target="_blank" href="https://direct.i-dgtl.ru/">i-Digital Direct</a>
|
||||
</li>
|
||||
<li>
|
||||
<a target="_blank" href="https://direct-admin.i-dgtl.ru/">Direct Admin</a>
|
||||
</li>
|
||||
<li>
|
||||
<a target="_blank" href="https://api.docs.direct.i-dgtl.ru/">Direct API Docs</a>
|
||||
</li>
|
||||
<li>
|
||||
<a target="_blank" href="https://docs.i-free.com/pages/viewpage.action?pageId=86540335">Перевод текущих
|
||||
клиентов</a>
|
||||
</li>
|
||||
<li>
|
||||
<a target="_blank" href="https://docs.i-free.com/pages/viewpage.action?pageId=162922597">Деактивация
|
||||
уволенного сотрудника</a>
|
||||
</li>
|
||||
<li>
|
||||
<a target="_blank" href="https://docs.i-free.com/pages/viewpage.action?pageId=107577537">Клиент просит
|
||||
удалить его данные</a>
|
||||
</li>
|
||||
<li>
|
||||
<a target="_blank" href="https://docs.i-free.com/pages/viewpage.action?pageId=89985429">Руководство
|
||||
саппорта</a>
|
||||
</li>
|
||||
</ul>
|
||||
|
||||
<span>Другое</span>
|
||||
<ul>
|
||||
<li>
|
||||
<a target="_blank" href="https://www.msisdn.net/">Аналог InfoBip</a>
|
||||
</li>
|
||||
<!--li>
|
||||
<a target="_blank" href="https://www.virustotal.com/gui/home/upload">Проверка ссылок на вирусы</a>
|
||||
</li-->
|
||||
<li>
|
||||
<a target="_blank" href="https://dencode.com/ru/string/">Кодирование строк</a>
|
||||
</li>
|
||||
<!--li>
|
||||
<a target="_blank" href="https://unicode-table.com/ru/2639/">Кодировки символов</a>
|
||||
</li>
|
||||
<li>
|
||||
<a target="_blank" href="https://ipcalc.co/">Калькулятор IP</a>
|
||||
</li>
|
||||
<li>
|
||||
<a target="_blank" href="https://calculat.io/ru/date/count/6--months--before--today">Калькулятор дат</a>
|
||||
</li>
|
||||
<li>
|
||||
<a target="_blank" href="https://www.regexplanet.com/advanced/java/index.html">Регулярки 1</a>
|
||||
</li>
|
||||
<li>
|
||||
<a target="_blank" href="https://regex101.com/">Регулярки 2</a>
|
||||
</li>
|
||||
<li>
|
||||
<a target="_blank"
|
||||
href="https://www.freeformatter.com/regex-tester.html">Валидаторы/Конвертеры/Форматеры</a>
|
||||
</li-->
|
||||
<li>
|
||||
<a target="_blank" href="https://jsonlint.com/">JSON валидатор</a>
|
||||
</li>
|
||||
<li>
|
||||
<a target="_blank" href="https://dencode.com/ru/string/unicode-escape">JSON Escape/Unescape</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- <script src="https://cdn.jsdelivr.net/npm/vue/dist/vue.js"></script>
|
||||
<script src="https://unpkg.com/axios/dist/axios.min.js"></script>
|
||||
|
||||
|
||||
|
||||
-->
|
||||
</div>
|
||||
|
||||
|
||||
</body>
|
||||
</html>
|
||||
0
Pizipus/src/browser_action/popup.js
Normal file
0
Pizipus/src/browser_action/popup.js
Normal file
Reference in New Issue
Block a user