Skip to content

Instantly share code, notes, and snippets.

@stefangrund
Last active July 15, 2020 13:45
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save stefangrund/4a2b057df09ad9c2e20ce8ea0f269b68 to your computer and use it in GitHub Desktop.
Save stefangrund/4a2b057df09ad9c2e20ce8ea0f269b68 to your computer and use it in GitHub Desktop.
Hide Asana's up-selling ads in Firefox

before/after

Here's how to hide Asana's annoying UPGRADE up-sell ads:

  1. Open about:profiles in Firefox to see the path to your profile folder.
  2. Open your profile folder and add a new folder called chrome.
  3. Add the following userContent.css to the new folder.
  4. Restart Firefox.
/* Asana without up-selling, updated 2020-07-15, by @eay */
@-moz-document domain(asana.com) {
.SidebarTopNavLinks-myPortfoliosbutton,
.TopbarContingentUpgradeLink,
.TopbarSettingsMenu-upgrade,
.SidebarInvite,
.ProjectPageHeader-navigationBar div:nth-child(5),
.TopbarPageHeaderGlobalActions-upgradeButton,
.Menu-menuItem.PremiumIconItem,
.SidebarTopNavLinks-goalsButton,
.ParentGoalUpsellCard {
display: none !important;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment