Archived
добавляет файлы
This commit is contained in:
@@ -1,6 +1,6 @@
|
|||||||
MIT License
|
MIT License
|
||||||
|
|
||||||
Copyright (c) <year> <copyright holders>
|
Copyright (c) 2023 Maxim Slipenko
|
||||||
|
|
||||||
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
||||||
|
|
||||||
|
|||||||
@@ -0,0 +1,15 @@
|
|||||||
|
{
|
||||||
|
"name": "VK Messages Tooltip",
|
||||||
|
"version": "1.2",
|
||||||
|
"manifest_version": 3,
|
||||||
|
"content_scripts": [
|
||||||
|
{
|
||||||
|
"js": [
|
||||||
|
"script.js"
|
||||||
|
],
|
||||||
|
"matches": [
|
||||||
|
"https://vk.com/im*"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
@@ -0,0 +1,48 @@
|
|||||||
|
const styles = `
|
||||||
|
span.nim-dialog--preview._dialog_body {
|
||||||
|
pointer-events: auto;
|
||||||
|
}
|
||||||
|
span.nim-dialog--preview._dialog_body:hover {
|
||||||
|
background: white;
|
||||||
|
position: absolute;
|
||||||
|
white-space: normal;
|
||||||
|
z-index: 130;
|
||||||
|
border-radius: 6px;
|
||||||
|
box-shadow: 0 1px 3px var(--black_alpha12);
|
||||||
|
color: var(--text_primary);
|
||||||
|
background: var(--modal_card_background);
|
||||||
|
|
||||||
|
border: 1px solid var(--separator_common);
|
||||||
|
padding: 5px;
|
||||||
|
transform: translate(-6px, -6px);
|
||||||
|
}
|
||||||
|
|
||||||
|
.nim-dialog--text-preview:has(span.nim-dialog--preview._dialog_body:hover):before {
|
||||||
|
content: ' ';
|
||||||
|
display: inline-block;
|
||||||
|
vertical-align: middle;
|
||||||
|
height: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.nim-dialog:not(.nim-dialog_deleted):not(.nim-dialog_classic).nim-dialog_selected .nim-dialog--preview._dialog_body:hover {
|
||||||
|
color: var(--white);
|
||||||
|
background: var(--dynamic_blue);
|
||||||
|
}
|
||||||
|
|
||||||
|
li.nim-dialog:has(span.nim-dialog--preview._dialog_body:hover) {
|
||||||
|
pointer-events:none;
|
||||||
|
}
|
||||||
|
`
|
||||||
|
|
||||||
|
document.addEventListener('click', function(event) {
|
||||||
|
var t = event.target.closest('li.nim-dialog')
|
||||||
|
if (t?.querySelector('span.nim-dialog--preview._dialog_body:hover')) {
|
||||||
|
event.stopPropagation()
|
||||||
|
}
|
||||||
|
}, { capture: true })
|
||||||
|
|
||||||
|
|
||||||
|
const css = document.createElement('style');
|
||||||
|
css.id = "my-custom-super-id"
|
||||||
|
css.appendChild(document.createTextNode(styles));
|
||||||
|
document.getElementsByTagName("body")[0].appendChild(css);
|
||||||
Reference in New Issue
Block a user