allergies-userscripts/AuchanDrive_allergies.user.js

18 lines
798 B
JavaScript

// ==UserScript==
// @name Auchan Drive allergies
// @namespace http://amnesix.eu
// @description Affiche une alerte lorsqu'un produit contient un des ingrédients interdits
// @include https://www.auchandrive.fr/*
// @include http://www.auchandrive.fr/*
// @version 0.1
// @grant none
// @require https://code.amnesix.eu/guillaume/allergies-userscripts/raw/branch/master/Allergies-1.1.js
// ==/UserScript==
(function() {
var ingredients = Array.from(document.querySelectorAll('div.pdp-bottom-infos__title span'))
.filter(function(span) { return span.textContent == 'Composition'; })
.map(function(span) { return span.closest('div.pdp-bottom-infos__container').querySelector('div.pdp-bottom-infos__content'); })
ingredients.forEach(Allergies.process);
})();