Joined Jun 2005
L8: Grand Teacher
Popular
April 10, 2025 at
10:15 AM
in
Grocery
(5)
Get Meijer coupons
Deal Details
Last Edited by Cobalt_Blue_FF April 10, 2025 at 12:31 PM
Similar to the Amex offers JavaScript that you can bookmark and run to clip all offers, I crafted one that works for Meijer Mperks. Note that Mperks has a limit of 160 coupons clipped per their TOC, so I added a clip limit of 160 to the code . It was not real clear if that is how many you can clip per x amount of time or the total number of clipped coupons.
Either way, I found it threw an error after clipping a bunch of them. But it did work!
Also, here is a direct link to your handpicked offers, it is not always obvious when these are available.
https://www.meijer.com/shopping/c...ffers.html
Mods please delete if this is not allowed to be posted. Thanks!
Just create a new bookmark, and add this code as the webpage. Then click it while on the Amex offers or Mperks coupon pages
Enjoy!
I am adding all new stores to the wiki
Mperks Clipper:
Amex Offers Clipper:
Kroger:
Kroger without boost coupons (the above one breaks if you do not have boost)
https://www.meijer.com/shopping/c...ffers.html
Either way, I found it threw an error after clipping a bunch of them. But it did work!
Also, here is a direct link to your handpicked offers, it is not always obvious when these are available.
https://www.meijer.com/shopping/c...ffers.html
Mods please delete if this is not allowed to be posted. Thanks!
Just create a new bookmark, and add this code as the webpage. Then click it while on the Amex offers or Mperks coupon pages
Enjoy!
I am adding all new stores to the wiki
Mperks Clipper:
Code:
javascript:btns=[...document.querySelectorAll('button.coupon-tile__button--clip[aria-label^="Clip $"]')];let limit=160;c=()=>{if(btns.length===0||limit<=0)return;b=btns.shift();b.click();limit--;setTimeout(c,Math.random()*300)};c();
Code:
javascript:btns=[...document.querySelectorAll('.offer-cta')].filter(b => b.textContent === 'Add to Card');c=()=>{ b = btns.shift(); if (!b) return; b.click(); setTimeout(c, Math.random() * 300) };c();
Code:
javascript:[...document.querySelectorAll('button[aria-label*="Clip"]')].forEach(btn => btn.click());
Code:
javascript:[...document.querySelectorAll('button[aria-label*="Clip"]')].filter(btn => !btn.textContent.includes("Boost")).forEach(btn => btn.click());
About the OP
Community Wiki
Last Edited by Cobalt_Blue_FF
April 14, 2025
at
09:33 AM
Mperks Clipper:
Amex Offers Clipper:
Kroger:
Kroger without boost coupons (the above one breaks if you do not have boost)
Publix:
Winn-Dixie
HEB
Kroger Cash Back
Add store names here and I will work on JavaScriptlets for them.
Code:
javascript:btns=[...document.querySelectorAll('button.coupon-tile__button--clip[aria-label^="Clip $"]')];let limit=160;c=()=>{if(btns.length===0||limit<=0)return;b=btns.shift();b.click();limit--;setTimeout(c,Math.random()*300)};c();
Code:
javascript:btns=[...document.querySelectorAll('.offer-cta')].filter(b => b.textContent === 'Add to Card');c=()=>{ b = btns.shift(); if (!b) return; b.click(); setTimeout(c, Math.random() * 300) };c();
Code:
javascript:[...document.querySelectorAll('button[aria-label*="Clip"]')].forEach(btn => btn.click());
Code:
javascript:[...document.querySelectorAll('button[aria-label*="Clip"]')].filter(btn => !btn.textContent.includes("Boost")).forEach(btn => btn.click());
Code:
javascript:(function(){document.querySelectorAll('.p-coupon-button__label').forEach(button => button.click());})();
Code:
javascript:btns=[...document.querySelectorAll('span[id^="cpnSpan_"]')];c=()=>{b=btns.shift();if(!b)return;b.click();setTimeout(c,Math.random()*300)};c();
Code:
javascript:btns=[...document.querySelectorAll('span.ButtonLabel_buttonLabel__z680Q')].filter(btn=>btn.textContent.trim()==='Clip');c=()=>{b=btns.shift();if(!b)return;b.click();setTimeout(c,Math.random()*300)};c();
Code:
javascript:btns=[...document.querySelectorAll('button[data-testid^="CouponActionButton-"]')];c=()=>{b=btns.shift();if(!b)return;b.click();setTimeout(c,Math.random()*300)};c();
33 Comments
Your comment cannot be blank.
Sign up for a Slickdeals account to remove this ad.
Sign up for a Slickdeals account to remove this ad.
So far I have posted Publix, Kroger, Mperks (Meijer), and the code for Amex offers, which uses a similar clicking style.
Let me know if you want any more stores added!
I would be surprised if the Kroger one works. At one point, I got an error from their site because I hit the limit of currently clipped coupons. Unless that's changed, I expect it fails after ~50.
Everytime before I go to Bj's, I just run this and all the coupons are clipped. It's like magic!
A lot of coupons are 1x per day, so the next time you want to use it, you have to clip it again.
https://greasyfork.org/en/scripts...on-clicker