Highlight verified businesses
Marks providers with a verification badge using a blue stripe so you instantly spot trusted places.
Code to copy
try {
var cards = document.querySelectorAll('[data-testid*="business-card" i], [class*="provider-card" i], article[class*="result" i]');
cards.forEach(function (c) {
try {
var v = c.querySelector('[class*="verified" i], [aria-label*="verified" i], [data-testid*="verified" i]');
if (v) {
c.style.setProperty('border-left', '5px solid #1565c0', 'important');
c.style.setProperty('background', '#f3f8fe', 'important');
}
} catch (e) {}
});
} catch (e) {}
How to use this example
- Copy the code with the button above.
- Install JustZix (2 minutes) and open the extension on the target page.
- Add a new rule matching that page.
- Paste the code into the rule's JavaScript panel and save — it runs on every page visit.
Rate this example
No ratings yet — be the first.