Google Minus One Firefox

Google Minus One

Removes the 'Upgrade' advertisement on Google online products, including Docs, Mail, Drive, etc.

Features & Capabilities

Removes the 'Upgrade' advertisement on Google online products, including Docs, Mail, Drive, etc. Around 25 lines of actual code. Nothing fancy. I'm going to post the code here in case you want to look at it:

/**

  • Project: Goole Minus One Firefox Extension
  • File Purpose: This file is the main javascript file for the extension. It finds the
  • upgrade advertisement on google pages and remove the html element.
  • Responsible Party: Claire Rosenthal
  • License: GNU GPLv3
  • This program is free software: you can redistribute it and/or modify
  • it under the terms of the GNU General Public License as published by
  • the Free Software Foundation, either version 3 of the License, or
  • (at your option) any later version.
  • This program is distributed in the hope that it will be useful,
  • but WITHOUT ANY WARRANTY; without even the implied warranty of
  • MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  • GNU General Public License for more details.
  • You should have received a copy of the GNU General Public License
  • along with this program. If not, see <https://www.gnu.org/licenses/>. */

// This is a Stack Overflow solution to waiting for and finding an html element using the MutationObserver function. // Source - https://stackoverflow.com/a/61511955 // Posted by Yong Wang, modified by community. See post 'Timeline' for change history // Retrieved 2026-07-01, License - CC BY-SA 4.0

function waitForElm(selector) { return new Promise((resolve) => { if (document.querySelector(selector)) { return resolve(document.querySelector(selector)); }

const observer = new MutationObserver((mutations) => {
  if (document.querySelector(selector)) {
    observer.disconnect();
    resolve(document.querySelector(selector));
  }
});

// If you get "parameter 1 is not of type 'Node'" error, see https://stackoverflow.com/a/77855838/492336
observer.observe(document.body, {
  childList: true,
  subtree: true,
});

}); }

// This is where the waiting for and selection of the html element starts. // Here is where the different selection ids come from: // .s1rbBe is the upgrade selector for Gmail // .appsElementsWorkspaceRecommendationContentButtonFull is the upgrade button selector for Google Workspace (Docs, Sheets, etc.) // .wKxlIc is the upgrade button selector for Google Calendar // .Iu19ad-OkO9ve-yp5uJf-j is the upgrade button selector for Google Drive waitForElm( ".s1rbBe,.appsElementsWorkspaceRecommendationContentButtonFull,.wKxlIc,.Iu19ad-OkO9ve-yp5uJf-j", ).then((elm) => { elm.remove(); });

User Growth & Download Statistics

Manifest V3 Add-on
By:
Claire Rosenthal
Daily users:
6 1
Version:
0.5 Last updated: 2026-07-05
Version code:
6335120
Creation date:
2026-07-02
Risk:
Moderate risk impact High risk likelihood
Content scripts matches:
  • *.google.com
Size:
49.71KB
Full description:
See detailed description
Source:
Firefox Add-ons Store
Data ingested on:
2026-07-30
Compare stats and ranking:

Contact the developer

Chrome-Stats does not own this Firefox add-on. Please use these information below to contact the Firefox add-on developer.
Developed by:
Claire Rosenthal
Firefox Add-ons Store
https://addons.mozilla.org/firefox/addon/google-minus-one/

Is Google Minus One Safe?

Risk impact
Risk impact measures the level of extra permissions an extension has access to. A low risk impact extension cannot do much harms, whereas a high risk impact extension can do a lot of damage like stealing your password, bypassing your security settings, and accessing your personal data. High risk impact extensions are not necessarily malicious. However, if they do turn malicious, they can be very harmful.

Google Minus One requires a few sensitive permissions. Exercise caution before installing.

Risk impact analysis details
  • Critical Request access to the following domains: google.com
  • High ******* ******* **** *** ****** ***** *** ***** ** ******* **** ********* ********* ** * *********** *****
Risk likelihood
Risk likelihood measures the probability that a Firefox add-on may turn malicious. This is determined by the publisher and the Firefox add-on reputation on Firefox Add-ons Store, the amount of time the Firefox add-on has been around, and other signals about the Firefox add-on. Our algorithms are not perfect, and are subject to change as we discover new ways to detect malicious extensions. We recommend that you always exercise caution when installing a Firefox add-on.

Google Minus One is recently added, and hasn't been around long enough for us to gather enough data to accurately assess its risk level.

Risk likelihood analysis details
  • High This extension was recently updated in the past month. New updates may not be stable or safe.
  • High **** ********* *** ******** ****** *** ********** *** *** ** ****** ** *****
  • High **** ********* *** *** **** ****** ********* ********** *** *** ** ****** ** *****
Extension Guard
Extension Guard

Discover every extension in use, analyze risks, and enforce blocking policies with Extension Guard

Secure Your Browser
Upgrade to see full risk analysis details

Best Google Minus One Alternatives

Here are some Firefox add-ons that are similar to Google Minus One: