📜 ⬆️ ⬇️

Userscript to remove red messages from Google+

Google+ can strain your messages. I immediately removed all the emails in the settings. Red messages in the black strip above strain a little less, but they go through the red thread through all the other products of the good company.

A simple user script helps to get rid of them in the mail, documents, calendar:

http://userscripts.org/scripts/show/105894
')
The source code is quite simple. In fact, this is one line:

try {document.getElementById("gbg1").style.display = 'none';} catch(e) { }

You can install it in Chrome simply by clicking the green “Install” button. If you do not trust the contents of the script - download it (for example, on the desktop) by clicking "Save As" on this button. Look at the code carefully, maybe correct it (perhaps you would like to see the messages in the Reader). Open a new tab in Chrome and drag the file with the mouse there, agree with the installation.

Source: https://habr.com/ru/post/123278/


All Articles