Add script for Leclerc Drive
parent
caa53ec246
commit
66d893330f
|
@ -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);
|
||||
}
|
||||
})();
|
||||
|
Loading…
Reference in New Issue