Skip to content

Commit

Permalink
1.2.2
Browse files Browse the repository at this point in the history
  • Loading branch information
SuperZombi committed Dec 12, 2023
1 parent bd474a8 commit e5c8e20
Show file tree
Hide file tree
Showing 8 changed files with 17 additions and 12 deletions.
7 changes: 5 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
<img src="github/images/icon.svg" width="25%" align="right">

# Google Meet Helper
# Meet Helper

<p align="right">
<img align="left" src="https://shields.io/badge/version-v1.2.1-blue">
<img align="left" src="https://shields.io/badge/version-v1.2.2-blue">
<a href="#donate"><img src="https://shields.io/badge/💲-Support_the_Project-2ea043"></a>
</p>

Expand Down Expand Up @@ -90,6 +90,9 @@

## List of changes:

### 1.2.2:
* Volumer z-index

### 1.2.1:
* Update to latest Google Meet changes

Expand Down
4 changes: 2 additions & 2 deletions chrome/_locales/en/messages.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
{
"extName": {
"message": "Google Meet Helper"
"message": "Meet Helper"
},
"extDesc": {
"message": "Adds additional tools to Google Meets. Automatically join meetings, turn off the camera and microphone, and other."
"message": "Adds additional tools to Meets. Automatically join meetings, turn off the camera and microphone, and other."
},
"settings": {
"message": "Settings"
Expand Down
4 changes: 2 additions & 2 deletions chrome/_locales/ru/messages.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
{
"extName": {
"message": "Google Meet Помощник"
"message": "Meet Помощник"
},
"extDesc": {
"message": "Добавляет дополнительные инструменты в Google Meets. Позволяет автоматически присоединяться к встречам, отключать камеру и микрофон, и другое."
"message": "Добавляет дополнительные инструменты в Meets. Позволяет автоматически присоединяться к встречам, отключать камеру и микрофон, и другое."
},
"settings": {
"message": "Настройки"
Expand Down
4 changes: 2 additions & 2 deletions chrome/_locales/uk/messages.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
{
"extName": {
"message": "Google Meet Помічник"
"message": "Meet Помічник"
},
"extDesc": {
"message": "Додає додаткові інструменти до Google Meets. Дозволяє автоматично приєднуватися до зустрічей, вимикати камеру та мікрофон, та інше."
"message": "Додає додаткові інструменти до Meets. Дозволяє автоматично приєднуватися до зустрічей, вимикати камеру та мікрофон, та інше."
},
"settings": {
"message": "Налаштування"
Expand Down
2 changes: 1 addition & 1 deletion chrome/manifest.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"manifest_version": 3,
"version": "1.2.1",
"version": "1.2.2",
"name": "__MSG_extName__",
"description": "__MSG_extDesc__",
"default_locale": "en",
Expand Down
2 changes: 1 addition & 1 deletion chrome/menu/options.html
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ <h2>__MSG_settings__</h2>
</a>

<span style="margin-top:2px;">
<img src="https://shields.io/badge/version-v1.2.1-blue">
<img src="https://shields.io/badge/version-v1.2.2-blue">
</span>
</p>

Expand Down
1 change: 1 addition & 0 deletions chrome/script.js
Original file line number Diff line number Diff line change
Expand Up @@ -171,6 +171,7 @@ function in_meet_main(){
slider_area.style.alignItems = "center";
slider_area.style.position = "absolute";
slider_area.style.bottom = "50px"
slider_area.style.zIndex = 100;
slider_area.style.filter = "drop-shadow(0 0 3px black)"

let input = document.createElement("input")
Expand Down
5 changes: 3 additions & 2 deletions meet.user.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// ==UserScript==
// @name Google Meet Helper
// @version 1.2.1
// @version 1.2.2
// @description Adds additional tools to Google Meets. Automatically join meetings, turn off the camera and microphone, and other.
// @author Super Zombi
// @match https://meet.google.com/*
Expand Down Expand Up @@ -241,7 +241,7 @@ GM_registerMenuCommand(get_message("settings"), ()=>{
<span style="margin-left:5px; ${dark_theme ? "color: #00c0ff;" : "color: blue;"}">GitHub</span>
</a>
<img style="margin-top:2px;" src="https://shields.io/badge/version-v1.2.1-blue">
<img style="margin-top:2px;" src="https://shields.io/badge/version-v1.2.2-blue">
</p>
`
div.appendChild(content)
Expand Down Expand Up @@ -480,6 +480,7 @@ function in_meet_main(){
slider_area.style.alignItems = "center";
slider_area.style.position = "absolute";
slider_area.style.bottom = "50px"
slider_area.style.zIndex = 100;
slider_area.style.filter = "drop-shadow(0 0 3px black)"

let input = document.createElement("input")
Expand Down

0 comments on commit e5c8e20

Please sign in to comment.