// ==UserScript== // @name Minimal Intuit Mint // @description Remove unused features from Intuit Mint // @include https://mint.intuit.com* // @exclude https://mint.intuit.com/save.event // ==/UserScript== /* css hiding */ const main = () => { const styles = ` /* Credit Score Menu Item */ li#creditreport { display: none !important; } /* Ways To Save Menu Item */ li#save { display: none !important; } /* Advertisement in Accounts List on Overview Page */ a.accounts-adv { display: none !important; } /* Feedback Card in Left Column of Overview Page */ .feedbackWidget { display: none !important; } /* Suggested Offers Card in Main Column of Overview Page */ .adviceWidget { display: none !important; } /* Ways To Save Card in Main Column of Overview Page */ .w2sWidget { display: none !important; } /* Help Widget on Right Side of Overview Page */ .nr-side-widget { display: none !important; } /* Advertisement on Transactions Page and Bills Page */ .promotions-personalized-offers-ui { display: none !important; } /* Feedback Widget in Right Column of Bills Page */ .FeedbackView { display: none !important; } /* Advertisement near top of Budgets Page */ .BudgetWidget { display: none !important; } /* Front Page Header Banner */ .WtEi__container { display: none !important; } /* feedback modal */ .QSIPopOver.SI_6RSOI27plGNzMeV_PopOverContainer { display: none !important; } ` const stylesheet = document.createElement("style") const head = document.head || document.querySelectorAll("head")[0] stylesheet.type = "text/css" stylesheet.append(document.createTextNode(styles)) head.append(stylesheet) } main()