добавляет файлы

This commit is contained in:
Maxim Slipenko 2023-01-05 22:09:16 +03:00
parent aff8aeded7
commit b388079da6
3 changed files with 64 additions and 1 deletions

View File

@ -1,6 +1,6 @@
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:

15
manifest.json Normal file
View File

@ -0,0 +1,15 @@
{
"name": "VK Messages Tooltip",
"version": "1.2",
"manifest_version": 3,
"content_scripts": [
{
"js": [
"script.js"
],
"matches": [
"https://vk.com/im*"
]
}
]
}

48
script.js Normal file
View File

@ -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);