Skip to content

Commit

Permalink
Update to latest Google Meet changes
Browse files Browse the repository at this point in the history
  • Loading branch information
SuperZombi committed Feb 21, 2023
1 parent 2a78004 commit ad06cfb
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 7 deletions.
5 changes: 4 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<img src="github/images/icon.svg" width="25%" align="right">

# Google Meet Helper
<img src="https://shields.io/badge/version-v1.2-blue">
<img src="https://shields.io/badge/version-v1.2.1-blue">

## Features:
* Automatically join a meeting.
Expand Down Expand Up @@ -86,6 +86,9 @@

## List of changes:

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

### 1.2:
* Fixed bug with Volume bar not displaying on click

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",
"version": "1.2.1",
"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-blue">
<img src="https://shields.io/badge/version-v1.2.1-blue">
</span>
</p>

Expand Down
2 changes: 1 addition & 1 deletion chrome/script.js
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ function get_mic_and_vid_controls(){
var pictureInPictureInterval;
function in_meet_main(){
var menu_items;
let temp = document.querySelector('div[jsname="tc8lHd"]')
let temp = document.querySelector('div.tMdQNe')
if (!temp.querySelector("#meetHelperTools")){
menu_items = document.createElement("div")
menu_items.id = "meetHelperTools"
Expand Down
6 changes: 3 additions & 3 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
// @version 1.2.1
// @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-blue">
<img style="margin-top:2px;" src="https://shields.io/badge/version-v1.2.1-blue">
</p>
`
div.appendChild(content)
Expand Down Expand Up @@ -423,7 +423,7 @@ function get_mic_and_vid_controls(){
var pictureInPictureInterval;
function in_meet_main(){
var menu_items;
let temp = document.querySelector('div[jsname="tc8lHd"]')
let temp = document.querySelector('div.tMdQNe')
if (!temp.querySelector("#meetHelperTools")){
menu_items = document.createElement("div")
menu_items.id = "meetHelperTools"
Expand Down

0 comments on commit ad06cfb

Please sign in to comment.