How to make gmail ring new mail chrome

To make Gmail ring when you receive new mail in Chrome, you can follow these steps:

Method 1: Using a Chrome Extension

  1. Go to the Chrome Web Store and search for "Gmail Notifier" or "Gmail Ring".
  2. Install the extension by clicking the "Add to Chrome" button.
  3. Once installed, click on the extension's icon in the top right corner of your Chrome browser.
  4. Configure the extension to your liking by setting the notification sound, vibration, and other options.
  5. Save your changes and close the extension's settings page.

Method 2: Using a Browser Action

  1. Go to the Chrome settings page by clicking the three vertical dots in the top right corner of your Chrome browser.
  2. Click on "Settings" and then scroll down to the "Advanced" section.
  3. Click on "Content settings" and then select "Notifications".
  4. Under "Allow" notifications, toggle the switch to the "On" position.
  5. In the "Notifications" section, click on "Add" and select "Gmail" as the website.
  6. Configure the notification settings as desired, including the sound and vibration options.
  7. Click "Save" to save your changes.

Method 3: Using a User Script

  1. Go to the Chrome settings page by clicking the three vertical dots in the top right corner of your Chrome browser.
  2. Click on "Settings" and then scroll down to the "Advanced" section.
  3. Click on "Extensions" and then click on "Developer mode" at the top right corner of the page.
  4. Click on "Load unpacked" and select the folder containing the user script.
  5. In the script, add the following code:
    document.addEventListener("DOMContentLoaded", function() {
    var notification = new Notification("New Mail", {
     body: "You have new mail in your Gmail inbox.",
     icon: "https://ssl.gstatic.com/ui/v1/icons/mail/gmail.ico"
    });
    });
  6. Save the script and reload the Gmail page.

Note: The above script will only work if you have the necessary permissions to display notifications. You may need to adjust the script to fit your specific needs.