8 Commits
v1.1 ... v1.4

14 changed files with 1053 additions and 130 deletions

1
.gitignore vendored
View File

@@ -1,4 +1,5 @@
/node_modules
/.cache
/.idea
/assets
.zip

View File

@@ -6,11 +6,15 @@
Если нажать на кнопку 🔇 напротив сообщения в беседе, то все сообщения во всех беседах от этого отправителя будут скрыты.
## Установка:
1. Скачать ZIP
### Вариант 1
Скачать из интернет-магазина Chrome ([ссылка](https://chrome.google.com/webstore/detail/vk-mute/mcnkfnjggkbenehgfelnnkklpkpjeibl)).
### Вариант 2
1. [Скачать ZIP](https://github.com/anatolykopyl/vk-mute/releases)
2. Разархивировать в удобное место
3. Хром > Настройки > Расширения
1. Включить режим разработчика
2. Загрузить распакованное, выбрать каталог с расширением (vk-mute-master/extension)
2. Загрузить распакованное, выбрать каталог с расширением
Расширение должно работать во всех браузерах на движке Chromium.
@@ -18,3 +22,14 @@
- Google Chrome
- Opera
- Brave
## Разработка:
Для живого обновления содержимого каталога `extension` во время работы запускаем:
```
$ npm run watch
```
Для билда расширения:
```
$ npm run build
```

93
extension/dist/dom.js vendored

File diff suppressed because one or more lines are too long

View File

@@ -25,7 +25,7 @@
}
.container {
background-color: hsl(207, 90%, 90%);
background-color: hsl(207, 90%, 95%);
max-width: 700px;
margin: auto;
padding: 2rem;

File diff suppressed because one or more lines are too long

View File

@@ -6,10 +6,9 @@
"128": "assets/icons/icon128.png",
"48": "assets/icons/icon48.png"
},
"version": "1.0",
"version": "1.4",
"description": "Позволяет заглушить нежелаемых собеседников",
"permissions": [
"activeTab",
"declarativeContent",
"storage"
],
@@ -20,6 +19,11 @@
"page_action": {
"default_popup": "dist/popup.html"
},
"browser_action": {
"default_icon": "assets/icons/icon128.png",
"default_title": "VK Mute",
"default_popup": "dist/popup.html"
},
"manifest_version": 2,
"content_scripts": [
{
@@ -29,5 +33,11 @@
],
"web_accessible_resources": [
"assets/mute.png"
]
],
"browser_specific_settings": {
"gecko": {
"id": "{121ce430-bad8-4f6b-85ba-55635e87e57d}",
"strict_min_version": "48.0"
}
}
}

859
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@@ -24,6 +24,7 @@
"css-loader": "^3.5.2",
"html-webpack-plugin": "^4.2.0",
"style-loader": "^1.1.4",
"webpack": "^4.42.1"
"webpack": "^4.42.1",
"webpack-cli": "^4.7.2"
}
}

14
src/dom/controls.js vendored
View File

@@ -9,15 +9,16 @@ function muteBtnHTML(id) {
const element = document.createElement('span');
element.setAttribute('class', 'mute_message');
element.setAttribute('id', `mute${id}`);
element.setAttribute('label', 'Заглушить');
element.style.background = `url(${chrome.runtime.getURL("assets/mute.png")}) center no-repeat`;
element.innerHTML ='<span class="mutetooltip">Заглушить</span>';
element.innerHTML = '<div class="mute_tooltip tt_w tt_black tt_down"><div class="tt_text">Заглушить</div></div>';
return element;
}
export function tryToAddControls(target) {
if (target.className === 'im-mess--check fl_l') {
const message = target.parentElement;
addControlButton(message)
addControlButton(message);
}
}
@@ -66,7 +67,11 @@ function setIdToHideHandle() {
name: clickedName
});
chrome.storage.sync.set({idsToHide: idsToHide}, function () {
chrome.storage.sync.get('isExtensionOn', function(data) {
if (data.isExtensionOn) {
hideExistingMessages();
}
});
});
}
});
@@ -99,6 +104,8 @@ export function createTryToInitInterval() {
* @param message {HTMLElement}
*/
function addControlButton(message) {
// Check if message is not an outgoing one
if (!message.classList.contains('im-mess_out')) {
const actionsArea = message.getElementsByClassName("im-mess--actions")[0];
if (actionsArea && actionsArea.lastChild.className !== "mute_message") {
const senderId = message.parentElement.parentElement.parentElement["dataset"].peer;
@@ -110,6 +117,7 @@ function addControlButton(message) {
return false;
}
}
}
export function tryToInitControls() {
let status = true;
@@ -119,7 +127,7 @@ export function tryToInitControls() {
if (item.className.includes('im-mess-stack _im_mess_stack')) {
let messages = item.children[1].children[1].getElementsByClassName('im-mess _im_mess');
for (let message of messages) {
status = addControlButton(message, chatBody)
status = addControlButton(message);
}
}
}

View File

@@ -1,50 +1,28 @@
.mute_message .mutetooltip {
visibility: hidden;
width: 120px;
background-color: #555;
color: #fff;
text-align: center;
padding: 5px 0;
border-radius: 6px;
/* Position the tooltip text */
.mute_tooltip {
position: absolute;
z-index: 1;
bottom: 110%;
margin-left: -53px;
/* Fade in tooltip */
opacity: 0;
transition: opacity 0.3s;
left: -50px;
top: -33px;
display: none;
}
/* Tooltip arrow */
.mute_message .mutetooltip::after {
content: "";
position: absolute;
top: 100%;
left: 50%;
margin-left: -5px;
border-width: 5px;
border-style: solid;
border-color: #555 transparent transparent transparent;
.mute_tooltip::after {
left: 61px !important;
}
/* Show the tooltip text when you mouse over the tooltip container */
.mute_message:hover .mutetooltip {
visibility: visible;
.mute_message:hover .mute_tooltip {
display: block !important;
opacity: 1;
}
.mute_message {
margin-top: .46rem;
margin-left: 4px;
margin-right: 3px;
position: relative;
display: inline-block;
vertical-align: top;
width: 12px;
height: 12px;
background-size: contain !important;
padding-top: 2px;
width: 24px;
height: 24px;
background-size: 11px !important;
}
.im-mess--actions {

View File

@@ -1,5 +1,5 @@
import {getChatBody} from "../utils/getChatBody";
import {tryToAddControls} from "./controls";
import {tryToAddControls, hideExistingMessages} from "./controls";
export function addNewMessageEventListener() {
const chatBody = getChatBody();
@@ -22,3 +22,37 @@ function newMessageHandler(message) {
});
}
}
export function returnMessagesEventListener() {
chrome.storage.onChanged.addListener(function(changes) {
const isExtensionOn = changes.isExtensionOn;
const idsToHide = changes.idsToHide;
const chatBody = getChatBody();
if (isExtensionOn) {
if (isExtensionOn.newValue === false) {
for (let item of chatBody.children) {
item.style.display = "block";
}
} else {
hideExistingMessages();
}
}
if (idsToHide) {
chrome.storage.sync.get('isExtensionOn', function(data) {
if (data.isExtensionOn) {
if (idsToHide.newValue.length < idsToHide.oldValue.length) {
// for (let item of chatBody.children) {
// item.style.display = "block";
// }
// hideExistingMessages();
for (let item of chatBody.children) {
if (idsToHide.newValue.filter(user => user.id == item.dataset.peer).length === 0) {
item.style.display = "block";
}
}
}
}
});
}
});
}

View File

@@ -1,7 +1,7 @@
import './dom.css'
import {createTryToInitInterval, hideExistingMessages, tryToInitControls} from "./controls";
import {UrlController} from "../utils/Url";
import {addNewMessageEventListener} from "./hide_element";
import {addNewMessageEventListener, returnMessagesEventListener} from "./hide_element";
function init() {
const url = new UrlController();
@@ -9,8 +9,13 @@ function init() {
if (tryToInitControls()) {
createTryToInitInterval();
addNewMessageEventListener();
returnMessagesEventListener();
chrome.storage.sync.get('isExtensionOn', function(data) {
if (data.isExtensionOn) {
hideExistingMessages();
}
});
}
})
}

View File

@@ -25,7 +25,7 @@
}
.container {
background-color: hsl(207, 90%, 90%);
background-color: hsl(207, 90%, 95%);
max-width: 700px;
margin: auto;
padding: 2rem;

View File

@@ -4,6 +4,7 @@
body {
min-width: 160px;
margin: 0;
}
/* The switch - the box around the slider */
.switch {
@@ -71,19 +72,17 @@ input:checked + .slider:before {
.header {
background-color: #2196F3;
color: white;
width: 100vw;
width: 100%;
height: 3rem;
position: relative;
margin-left: -50vw;
left: 50%;
margin-top: -20vw;
margin-bottom: 10vw;
padding-top: 5px;
padding-bottom: 5px;
display: flex;
align-items: center;
justify-content: center;
margin-bottom: 1rem;
}
h3 {
margin-bottom: 0;
padding: 1rem 0 .5rem 0;
margin: 0;
}
.idToHide {
@@ -92,28 +91,32 @@ h3 {
display: flex;
justify-content: space-between;
background-color: #fff;
width: 100vw;
}
.idToHide:hover {
background-color: #dcdfde;
background-color: #f1f1f1;
}
#id_list {
color: black;
position: relative;
margin-left: -50vw;
left: 50%;
margin-top: 10vw;
width: 100%;
margin-top: 1rem;
}
.del_item {
cursor: pointer;
transition: transform 0.2s;
}
.del_item:hover {
transform: scale(1.15);
}
.donation_btn {
text-align: right;
margin-top: .5rem;
padding: 0 10px 10px 0;
}
a {