Add script for Leclerc Drive

master
Guillaume Dott 2019-02-13 14:45:57 +01:00
parent caa53ec246
commit 66d893330f
1 changed files with 17 additions and 0 deletions

View File

@ -0,0 +1,17 @@
// ==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);
}
})();