// ==UserScript== // @name Leclerc Drive allergies // @namespace http://amnesix.eu // @description Affiche une alerte lorsqu'un produit contient un des ingrédients interdits // @include https://*.leclercdrive.fr/* // @include http://*.leclercdrive.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 = document.querySelector('div#fiche-produit-composition p.accordeons-detail-paragaphe'); if(ingredients != null) { Allergies.process(ingredients); } })();