Ajoutez le script sur votre site <html>
<head>
<script src="/tarteaucitron/tarteaucitron.js"></script>
<script type="text/javascript">
tarteaucitron.init({
"privacyUrl": "", /* Privacy policy url */
"bodyPosition": "bottom", /* or top to bring it as first element for accessibility */
"hashtag": "#tarteaucitron", /* Open the panel with this hashtag */
"cookieName": "tarteaucitron", /* Cookie name */
"orientation": "middle", /* Banner position (top - bottom) */
"groupServices": false, /* Group services by category */
"showDetailsOnClick": true, /* Click to expand the description */
"serviceDefaultState": "wait", /* Default state (true - wait - false) */
"showAlertSmall": false, /* Show the small banner on bottom right */
"cookieslist": false, /* Show the cookie list */
"closePopup": false, /* Show a close X on the banner */
"showIcon": true, /* Show cookie icon to manage cookies *///"iconSrc": "", /* Optionnal: URL or base64 encoded image */
"iconPosition": "BottomRight", /* BottomRight, BottomLeft, TopRight and TopLeft */
"adblocker": false, /* Show a Warning if an adblocker is detected */
"DenyAllCta" : true, /* Show the deny all button */
"AcceptAllCta" : true, /* Show the accept all button when highPrivacy on */
"highPrivacy": true, /* HIGHLY RECOMMANDED Disable auto consent */
"alwaysNeedConsent": false, /* Ask the consent for "Privacy by design" services */
"handleBrowserDNTRequest": false, /* If Do Not Track == 1, disallow all */
"removeCredit": false, /* Remove credit link */
"moreInfoLink": true, /* Show more info link */
"useExternalCss": false, /* If false, the tarteaucitron.css file will be loaded */
"useExternalJs": false, /* If false, the tarteaucitron.js file will be loaded *///"cookieDomain": ".my-multisite-domaine.fr", /* Shared cookie for multisite */
"readmoreLink": "", /* Change the default readmore link */
"mandatory": true, /* Show a message about mandatory cookies */
"mandatoryCta": true, /* Show the disabled accept button when mandatory on *///"customCloserId": "", /* Optional a11y: Custom element ID used to open the panel */
"googleConsentMode": true, /* Enable Google Consent Mode v2 for Google ads and GA4 */
"partnersList": false /* Show the number of partners on the popup/middle banner */
});
</script>BackNext step
Si vous masquez le petit bandeau en bas à droite, je vous recommande vivement, pour être le plus conforme possible, de laisser la possibilité à vos visiteurs de modifier leur consentement en ajoutant un lien pour ouvrir la boîte de dialogue : <a href="javascript:tarteaucitron.userInterface.openPanel();">Gestion des cookies</a> ou via une classe CSS : <div class="tarteaucitronOpenPanel">Gestion des cookies</div>
Langue
Vous pouvez forcer la langue du bandeau et du panneau de contrôle via une variable Javascript à placer au tout début de la balise <head>, AVANT le bloc principal. Si vous spécifiez une langue non supportée, la langue du navigateur sera sélectionnée, ou par défaut, l'anglais. <script type="text/javascript">
var tarteaucitronForceLanguage = 'fr'; /* supported: fr, en, de, es, it, pt, pl, ru */
</script>
Cookie expire
You can force cookies to expire before 1 year. <script type="text/javascript">
var tarteaucitronForceExpire = '90'; /* 3 months */
</script>
Hors UE
Vous pouvez désactiver le script pour les visiteurs en dehors de l'union européenne en déclarant une variable javascript. Exemple en PHP (nécessite les fonctions GeoIP): <?php
$continent = geoip_continent_code_by_name($_SERVER['REMOTE_ADDR']);
if ($continent != 'EU') {
echo '<script type="text/javascript">
tarteaucitron.user.bypass = true;
</script>';
}
Etape 3 : ajouter les services
APIs ABTasty
Installer
ABTasty
Fermer
1. Ajoutez ce code Javascript pour initialiser le service <script type="text/javascript">
tarteaucitron.user.abtastyID = 'id';
(tarteaucitron.job = tarteaucitron.job || []).push('abtasty');
</script>
</body>
</html>
2. Retirez ce marqueur HTML du site<script type="text/javascript" src="//try.abtasty.com/id.js"></script>
APIs Arc.io
Installer
Arc.io
Fermer
1. Ajoutez ce code Javascript pour initialiser le service <script type="text/javascript">
tarteaucitron.user.arcId = 'arcId';
(tarteaucitron.job = tarteaucitron.job || []).push('arcio');
</script>
</body>
</html>
2. Retirez ce marqueur HTML du site<script async src="https://arc.io/widget.min.js#arcId"></script>
APIs Dynatrace
Installer
Dynatrace
Fermer
1. Ajoutez ce code Javascript pour initialiser le service <script type="text/javascript">
tarteaucitron.user.dynatraceJSPath = 'path';
(tarteaucitron.job = tarteaucitron.job || []).push('dynatrace');
</script>
</body>
</html>
2. Retirez ce marqueur HTML du site<script type="text/javascript" src="path" data-dtconfig="config"></script>
APIs Genial.ly
Installer
Genial.ly
Fermer
1. Ajoutez ce code Javascript pour initialiser le service <script type="text/javascript">
(tarteaucitron.job = tarteaucitron.job || []).push('genially');
</script>
</body>
</html>
2. Ajoutez cette partie à l'endroit ou le service doit s'afficher <div class="tac_genially" geniallyid="geniallyid" width="width" height="height"></div>
1. Ajoutez ce code Javascript pour initialiser le service <script type="text/javascript">
(tarteaucitron.job = tarteaucitron.job || []).push('geoportail');
</script>
</body>
</html>
2. Ajoutez cette partie à l'endroit ou le service doit s'afficher <div class="geoportail" data-url="url" width="width" height="height"></div>
3. Retirez ce marqueur HTML du site<iframe width="width" height="height" frameborder="0" scrolling="no" marginheight="0" marginwidth="0" sandbox="allow-forms allow-scripts allow-same-origin" src="url" allowfullscreen></iframe>
APIs Google Fonts
Installer
Google Fonts
Fermer
1. Ajoutez ce code Javascript pour initialiser le service <script type="text/javascript">
tarteaucitron.user.googleFonts = 'families';
(tarteaucitron.job = tarteaucitron.job || []).push('googlefonts');
</script>
</body>
</html>
2. Retirez ce marqueur HTML du site<script src="https://ajax.googleapis.com/ajax/libs/webfont/1.6.24/webfont.js"></script>
<script>
WebFont.load({
google: {
families: ['families']
}
});
</script>
APIs Google jsapi
Installer
Google jsapi
Fermer
1. Ajoutez ce code Javascript pour initialiser le service <script type="text/javascript">
(tarteaucitron.job = tarteaucitron.job || []).push('jsapi');
</script>
</body>
</html>
2. Retirez ce marqueur HTML du site<script type="text/javascript" src="//www.google.com/jsapi"></script>
APIs Google Maps
Installer
Google Maps
Fermer
1. Ajoutez ce code Javascript pour initialiser le service <script type="text/javascript">
tarteaucitron.user.googlemapsKey = 'API KEY';
(tarteaucitron.job = tarteaucitron.job || []).push('googlemaps');
</script>
</body>
</html>
2. Ajoutez cette partie à l'endroit ou le service doit s'afficher <div class="googlemaps-canvas" zoom="zoom" latitude="latitude" longitude="longitude" style="width: widthpx; height: heightpx;"></div><script>tarteaucitron.user.mapscallback = 'callback_function';tarteaucitron.user.googlemapsLibraries = 'LIBRARIES';</script>
3. Retirez ce marqueur HTML du site<script src="https://maps.googleapis.com/maps/api/js?key=API KEY" type="text/javascript"></script>
<script type="text/javascript">
function initialize() {
var mapOptions = {
center: { lat: latitude, lng: longitude},
zoom: zoom
};
var map = new google.maps.Map(document.getElementById('map-canvas'),
mapOptions);
}
google.maps.event.addDomListener(window, 'load', initialize);
</script>
APIs Google Maps (search query)
Installer
Google Maps (search query)
Fermer
1. Ajoutez ce code Javascript pour initialiser le service <script type="text/javascript">
(tarteaucitron.job = tarteaucitron.job || []).push('googlemapssearch');
</script>
</body>
</html>
2. Ajoutez cette partie à l'endroit ou le service doit s'afficher <div class="googlemapssearch" data-search="SEARCHWORDS" data-api-key="YOUR_GOOGLE_MAP_API_KEY" width="WIDTH" height="HEIGHT" ></div>
3. Retirez ce marqueur HTML du site<iframe width="WIDTH" height="HEIGHT" frameborder="0" style="border:0" src="https://www.google.com/maps/embed/v1/place?key=YOUR_API_KEY&q=SEARCHWORDS" allowfullscreen> </iframe>
APIs Google Tag Manager
Installer
Google Tag Manager
Fermer
1. Ajoutez ce code Javascript pour initialiser le service <script type="text/javascript">
tarteaucitron.user.googletagmanagerId = 'GTM-XXXX';
(tarteaucitron.job = tarteaucitron.job || []).push('googletagmanager');
</script>
</body>
</html>
2. Retirez ce marqueur HTML du site<script>(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start':
new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0],
j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src=
'//www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);
})(window,document,'script','dataLayer','GTM-XXXX');</script>
APIs Google Tag Manager (multiple)
Installer
Google Tag Manager (multiple)
Fermer
1. Ajoutez ce code Javascript pour initialiser le service <script type="text/javascript">
tarteaucitron.user.multiplegoogletagmanagerId = ['GTM-XXXX'];
(tarteaucitron.job = tarteaucitron.job || []).push('multiplegoogletagmanager');
</script>
</body>
</html>
2. Retirez ce marqueur HTML du site<script>(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start':
new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0],
j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src=
'//www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);
})(window,document,'script','dataLayer','GTM-XXXX');</script>
APIs HelloAsso
Installer
HelloAsso
Fermer
1. Ajoutez ce code Javascript pour initialiser le service <script type="text/javascript">
(tarteaucitron.job = tarteaucitron.job || []).push('helloasso');
</script>
</body>
</html>
2. Ajoutez cette partie à l'endroit ou le service doit s'afficher <div class="tac_helloasso" data-url="url" width="width" height="height"></div>
3. Retirez ce marqueur HTML du site<iframe id="haWidget" allowtransparency="true" scrolling="auto" src="url" style="width:width;height:height;border:none;" onload="window.scroll(0, this.offsetTop)"></iframe>
APIs M6 Météo
Installer
M6 Météo
Fermer
1. Ajoutez ce code Javascript pour initialiser le service <script type="text/javascript">
(tarteaucitron.job = tarteaucitron.job || []).push('m6meteo');
</script>
</body>
</html>
2. Ajoutez cette partie à l'endroit ou le service doit s'afficher <div class="tac_m6meteo" data-id="id" width="width" height="height"></div>
1. Ajoutez ce code Javascript pour initialiser le service <script type="text/javascript">
tarteaucitron.user.marketomunchkinkey = 'marketomunchkinkey';
(tarteaucitron.job = tarteaucitron.job || []).push('marketomunchkin');
</script>
</body>
</html>
2. Retirez ce marqueur HTML du site<script> var didInit = false;
function initMunchkin() {
if(didInit === false) {
didInit = true;
Munchkin.init('marketomunchkinkey');
}
}
var s = document.createElement('script');
s.type = 'text/javascript';
s.async = true;
s.src = '//munchkin.marketo.net/munchkin.js';
s.onreadystatechange = function() {
if (this.readyState == 'complete' || this.readyState == 'loaded') {
initMunchkin();
}
};
s.onload = initMunchkin;
document.getElementsByTagName('head')[0].appendChild(s);</script>
APIs Matomo Tag Manager
Installer
Matomo Tag Manager
Fermer
1. Ajoutez ce code Javascript pour initialiser le service <script type="text/javascript">
tarteaucitron.user.matomotmUrl = 'matomomtUrl';
(tarteaucitron.job = tarteaucitron.job || []).push('matomotm');
</script>
</body>
</html>
2. Retirez ce marqueur HTML du site<script>
var _mtm = window._mtm = window._mtm || [];
_mtm.push({'mtm.startTime': (new Date().getTime()), 'event': 'mtm.Start'});
var d=document, g=d.createElement('script'), s=d.getElementsByTagName('script')[0];
g.async=true; g.src='matomomtUrl'; s.parentNode.insertBefore(g,s);
</script>
APIs MTcaptcha
Installer
MTcaptcha
Fermer
1. Ajoutez ce code Javascript pour initialiser le service <script type="text/javascript">
tarteaucitron.user.mtcaptchaSitekey = 'SiteKey';
(tarteaucitron.job = tarteaucitron.job || []).push('mtcaptcha');
</script>
</body>
</html>
2. Retirez ce marqueur HTML du site<script>
var mtcaptchaConfig = {
"sitekey": "SiteKey"
};
(function(){var mt_service = document.createElement('script');mt_service.async = true;mt_service.src = 'https://service.mtcaptcha.com/mtcv1/client/mtcaptcha.min.js';(document.getElementsByTagName('head')[0] || document.getElementsByTagName('body')[0]).appendChild(mt_service);
var mt_service2 = document.createElement('script');mt_service2.async = true;mt_service2.src = 'https://service2.mtcaptcha.com/mtcv1/client/mtcaptcha2.min.js';(document.getElementsByTagName('head')[0] || document.getElementsByTagName('body')[0]).appendChild(mt_service2);}) ();
</script>
APIs MyFeelBack (Skeepers)
Installer
MyFeelBack (Skeepers)
Fermer
1. Ajoutez ce code Javascript pour initialiser le service <script type="text/javascript">
tarteaucitron.user.myfeelbackId = 'ID';
(tarteaucitron.job = tarteaucitron.job || []).push('myfeelback');
</script>
</body>
</html>
2. Retirez ce marqueur HTML du site<script type='text/javascript'> window._Mfb_useCookie = true; // Review the commented lines. Insert real values for the placeholders window._Mfb_ud = { _context : { lang : undefined, // You can force the language of the survey. privacyMode : false, _page : { url : location.pathname, storageDuration : 30 // You can add page's properties here ie : pageProperties : { property1 : 'value', property2 : 'value'} } } }; (function() { var mfb = document.createElement('script'); mfb.type = 'text/javascript'; mfb.charset = 'UTF-8'; mfb.async = true; mfb.id = 'MFBActor'; mfb.src = 'https://actorssl-5637.kxcdn.com/actor/ID/action'; var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(mfb, s); })(); </script>
APIs Météo France
Installer
Météo France
Fermer
1. Ajoutez ce code Javascript pour initialiser le service <script type="text/javascript">
(tarteaucitron.job = tarteaucitron.job || []).push('meteofrance');
</script>
</body>
</html>
2. Ajoutez cette partie à l'endroit ou le service doit s'afficher <div class="tac_meteofrance" data-insee="insee" width="width" height="height"></div>
3. Retirez ce marqueur HTML du site<iframe id="widget_autocomplete_preview" width="width" height="height" frameborder="0" src="https://meteofrance.com/widget/prevision/insee"></iframe>
APIs OneSignal
Installer
OneSignal
Fermer
1. Ajoutez ce code Javascript pour initialiser le service <script type="text/javascript">
tarteaucitron.user.onesignalAppId = 'onesignalAppId';
(tarteaucitron.job = tarteaucitron.job || []).push('onesignal');
</script>
</body>
</html>
2. Retirez ce marqueur HTML du site<script src="https://cdn.onesignal.com/sdks/OneSignalSDK.js" type="text/javascript"></script>
<script>
var OneSignal = window.OneSignal || [];
OneSignal.push(function() {
OneSignal.init({
appId: "onesignalAppId",
});
});
</script>
APIs Openstreetmap Embed
Installer
Openstreetmap Embed
Fermer
1. Ajoutez ce code Javascript pour initialiser le service <script type="text/javascript">
(tarteaucitron.job = tarteaucitron.job || []).push('openstreetmap');
</script>
</body>
</html>
2. Ajoutez cette partie à l'endroit ou le service doit s'afficher <div class="openstreetmap" data-url="url" width="width" height="height"></div>
3. Retirez ce marqueur HTML du site<iframe width="width" height="height" frameborder="0" scrolling="no" marginheight="0" marginwidth="0" src="url" style="border: 1px solid black"></iframe>
APIs Pingdom
Installer
Pingdom
Fermer
1. Ajoutez ce code Javascript pour initialiser le service <script type="text/javascript">
tarteaucitron.user.pingdomId = 'pingdomId';
(tarteaucitron.job = tarteaucitron.job || []).push('pingdom');
</script>
</body>
</html>
2. Retirez ce marqueur HTML du site<script> var _prum = [['id', 'pingdomId'], ['mark', 'firstbyte', (new Date()).getTime()]]; (function() { var s = document.getElementsByTagName('script')[0] , p = document.createElement('script'); p.async = 'async'; p.src = '//rum-static.pingdom.net/prum.min.js'; s.parentNode.insertBefore(p, s); })(); </script>
APIs reCAPTCHA
Installer
reCAPTCHA
Fermer
1. Ajoutez ce code Javascript pour initialiser le service <script type="text/javascript">
tarteaucitron.user.recaptchaapi = 'XXXXX';
(tarteaucitron.job = tarteaucitron.job || []).push('recaptcha');
</script>
</body>
</html>
2. Ajoutez cette partie à l'endroit ou le service doit s'afficher <div class="g-recaptcha" data-sitekey="sitekey"></div>
3. Retirez ce marqueur HTML du site<script src='https://www.google.com/recaptcha/api.js?render=XXXXX'></script>
APIs Seamlessaccess
Installer
Seamlessaccess
Fermer
1. Ajoutez ce code Javascript pour initialiser le service <script type="text/javascript">
tarteaucitron.user.seamlessaccessInitiator = 'LOGIN_INITIATOR_URL';
(tarteaucitron.job = tarteaucitron.job || []).push('seamlessaccess');
</script>
</body>
</html>
2. Retirez ce marqueur HTML du site<script src="https://service.seamlessaccess.org/thiss.js"></script>
<script>
window.onload = function() {
// Render the Seamless Access button
thiss.DiscoveryComponent.render({
loginInitiatorURL: 'LOGIN_INITIATOR_URL',
}, '#putMyLoginButtonHere');
};
</script>
APIs Stonly
Installer
Stonly
Fermer
1. Ajoutez ce code Javascript pour initialiser le service <script type="text/javascript">
tarteaucitron.user.stonlyId = 'stonlyId';
(tarteaucitron.job = tarteaucitron.job || []).push('stonly');
</script>
</body>
</html>
2. Retirez ce marqueur HTML du site<!-- stonly-widget - copy into the head -->
<script>var STONLY_WID = "stonlyId";</script>
<script>
!function(s,t,o,n,l,y,w,g){s.StonlyWidget||((w=s.StonlyWidget=function(){
w._api?w._api.apply(w,arguments):w.queue.push(arguments)}).queue=[],(y=t.createElement(o)).async=!0,
(g=new XMLHttpRequest).open("GET",n+"version?v="+Date.now(),!0),g.onreadystatechange=function(){
4===g.readyState&&(y.src=n+"stonly-widget.js?v="+(200===g.status?g.responseText:Date.now()),
(l=t.getElementsByTagName(o)[0]).parentNode.insertBefore(y,l))},g.send())
}(window,document,"script","https://stonly.com/js/widget/v2/");
</script>
<!-- stonly-widget - copy into the head -->
APIs TagCommander
Installer
TagCommander
Fermer
1. Ajoutez ce code Javascript pour initialiser le service <script type="text/javascript">
tarteaucitron.user.tagcommanderid = 'tagcommanderid';
(tarteaucitron.job = tarteaucitron.job || []).push('tagcommander');
</script>
</body>
</html>
2. Retirez ce marqueur HTML du site<script type="text/javascript" src="https://cdn.tagcommander.com/tagcommanderid.js"></script>
APIs Timeline JS
Installer
Timeline JS
Fermer
1. Ajoutez ce code Javascript pour initialiser le service <script type="text/javascript">
(tarteaucitron.job = tarteaucitron.job || []).push('timelinejs');
</script>
</body>
</html>
2. Ajoutez cette partie à l'endroit ou le service doit s'afficher <div class="timelinejs-canvas" spreadsheet_id="spreadsheet_id" width="width" height="height" lang="lang_2_letter" font="font (Bevan-PotanoSans | Georgia-Helvetica | Arvo-PTSans)" map="map (toner | osm)" start_at_end="start_at_end (false | true)" hash_bookmark="hash_bookmark (false | true)" start_at_slide="start_at_slide (0 | ...)" start_zoom="start_zoom (0 | ... | 5)"></div>
3. Retirez ce marqueur HTML du site<iframe src="//cdn.knightlab.com/libs/timeline/latest/embed/index.html?source=spreadsheet_id&font=font&maptype=map&lang=lang_2_letter&start_at_end=start_at_end&hash_bookmark=hash_bookmark&start_at_slide=start_at_slide&start_zoom_adjust=start_zoom_adjust&height=height" width="width" height="height" frameborder="0"></iframe>
APIs Typekit (adobe)
Installer
Typekit (adobe)
Fermer
1. Ajoutez ce code Javascript pour initialiser le service <script type="text/javascript">
tarteaucitron.user.typekitId = 'id';
(tarteaucitron.job = tarteaucitron.job || []).push('typekit');
</script>
</body>
</html>
2. Retirez ce marqueur HTML du site<script type="text/javascript" src="//use.typekit.net/id.js"></script>
<script type="text/javascript">try{Typekit.load();}catch(e){}</script>
APIs X (formerly Twitter) Widgets API
Installer
X (formerly Twitter) Widgets API
Fermer
1. Ajoutez ce code Javascript pour initialiser le service <script type="text/javascript">
(tarteaucitron.job = tarteaucitron.job || []).push('twitterwidgetsapi');
</script>
</body>
</html>
Autre Active Campaign 2023
Installer
Active Campaign 2023
Fermer
1. Ajoutez ce code Javascript pour initialiser le service <script type="text/javascript">
tarteaucitron.user.activecampaignAccount = 'Account';
(tarteaucitron.job = tarteaucitron.job || []).push('activecampaignvgo');
</script>
</body>
</html>
2. Retirez ce marqueur HTML du site<script type="text/javascript">
(function(e,t,o,n,p,r,i){e.visitorGlobalObjectAlias=n;e[e.visitorGlobalObjectAlias]=e[e.visitorGlobalObjectAlias]||function(){(e[e.visitorGlobalObjectAlias].q=e[e.visitorGlobalObjectAlias].q||[]).push(arguments)};e[e.visitorGlobalObjectAlias].l=(new Date).getTime();r=t.createElement("script");r.src=o;r.async=true;i=t.getElementsByTagName("script")[0];i.parentNode.insertBefore(r,i)})(window,document,"https://diffuser-cdn.app-us1.com/diffuser/diffuser.js","vgo");
vgo('setAccount', 'Account');
vgo('setTrackByDefault', true);
vgo('process');
</script>
Autre Calendly
Installer
Calendly
Fermer
1. Ajoutez ce code Javascript pour initialiser le service <script type="text/javascript">
(tarteaucitron.job = tarteaucitron.job || []).push('calendly');
</script>
</body>
</html>
2. Retirez ce marqueur HTML du site<script type="text/javascript" src=https://assets.calendly.com/assets/external/widget.js async></script>
Autre Collect Chat
Installer
Collect Chat
Fermer
1. Ajoutez ce code Javascript pour initialiser le service <script type="text/javascript">
tarteaucitron.user.collectchatId = 'ID';
(tarteaucitron.job = tarteaucitron.job || []).push('collectchat');
</script>
</body>
</html>
2. Retirez ce marqueur HTML du site<script>(function(w, d) { w.CollectId = "ID"; var h = d.head || d.getElementsByTagName("head")[0]; var s = d.createElement("script"); s.setAttribute("type", "text/javascript"); s.async=true; s.setAttribute("src", https://collectcdn.com/launcher.js); h.appendChild(s); })(window, document);</script>
Autre Crisp Chat
Installer
Crisp Chat
Fermer
1. Ajoutez ce code Javascript pour initialiser le service <script type="text/javascript">
tarteaucitron.user.crispID = 'ID';
(tarteaucitron.job = tarteaucitron.job || []).push('crisp');
</script>
</body>
</html>
2. Retirez ce marqueur HTML du site<script type="text/javascript">window.$crisp=[];window.CRISP_WEBSITE_ID=ID;(function(){d=document;s=d.createElement("script");s.src="https://client.crisp.chat/l.js";s.async=1;d.getElementsByTagName("head")[0].appendChild(s);})();</script>
Autre Facil'ITI
Installer
Facil'ITI
Fermer
1. Ajoutez ce code Javascript pour initialiser le service <script type="text/javascript">
tarteaucitron.user.facilitiID = 'facilitiID';
(tarteaucitron.job = tarteaucitron.job || []).push('faciliti');
</script>
</body>
</html>
2. Retirez ce marqueur HTML du site<script type="text/javascript">(function(w, d, s, f) {
w[f] = w[f] || {conf: function () { (w[f].data = w[f].data || []).push(arguments);}};
var l = d.createElement(s), e = d.getElementsByTagName(s)[0];
l.async = 1; l.src = 'https://ws.facil-iti.com/tag/faciliti-tag.min.js'; e.parentNode.insertBefore(l, e);
}(window, document, 'script', 'FACIL_ITI'));
FACIL_ITI.conf('userId', 'facilitiID');</script>
Autre Gallica
Installer
Gallica
Fermer
1. Ajoutez ce code Javascript pour initialiser le service <script type="text/javascript">
(tarteaucitron.job = tarteaucitron.job || []).push('gallica');
</script>
</body>
</html>
2. Ajoutez cette partie à l'endroit ou le service doit s'afficher <div class="gallica_player" data-style="style" data-src="src"></div>
3. Retirez ce marqueur HTML du site<div style="display: block; "><iframe style="style" src="src"></iframe></div>
Autre Google Agenda
Installer
Google Agenda
Fermer
1. Ajoutez ce code Javascript pour initialiser le service <script type="text/javascript">
(tarteaucitron.job = tarteaucitron.job || []).push('gagenda');
</script>
</body>
</html>
2. Ajoutez cette partie à l'endroit ou le service doit s'afficher <div class="gagenda_embed" width="width" height="height" data="data"></div>
3. Retirez ce marqueur HTML du site<iframe width="width" height="height" src="https://www.google.com/calendar/embed?data"></iframe>
Autre Google Docs
Installer
Google Docs
Fermer
1. Ajoutez ce code Javascript pour initialiser le service <script type="text/javascript">
(tarteaucitron.job = tarteaucitron.job || []).push('gdocs');
</script>
</body>
</html>
2. Ajoutez cette partie à l'endroit ou le service doit s'afficher <div class="gdocs_embed" width="width" height="height" id="id"></div>
3. Retirez ce marqueur HTML du site<iframe width="width" height="height" src="https://docs.google.com/document/d/e/id/pub?embedded=true"></iframe>
Autre Google Forms
Installer
Google Forms
Fermer
1. Ajoutez ce code Javascript pour initialiser le service <script type="text/javascript">
(tarteaucitron.job = tarteaucitron.job || []).push('gforms');
</script>
</body>
</html>
2. Ajoutez cette partie à l'endroit ou le service doit s'afficher <div class="gforms_embed" width="width" height="height" id="id"></div>
3. Retirez ce marqueur HTML du site<iframe width="width" height="height" src="https://docs.google.com/forms/d/e/id/viewform?embedded=true"></iframe>
Autre Google Maps (no api)
Installer
Google Maps (no api)
Fermer
1. Ajoutez ce code Javascript pour initialiser le service <script type="text/javascript">
(tarteaucitron.job = tarteaucitron.job || []).push('maps_noapi');
</script>
</body>
</html>
2. Ajoutez cette partie à l'endroit ou le service doit s'afficher <div class="googlemaps_embed" width="width" height="height" id="id"></iframe>
3. Retirez ce marqueur HTML du site<iframe width="width" height="height" src="https://google.com/maps/embed?pb=id"></iframe>
Autre Google Optimize
Installer
Google Optimize
Fermer
1. Ajoutez ce code Javascript pour initialiser le service <script type="text/javascript">
tarteaucitron.user.goptimize = 'ID';
(tarteaucitron.job = tarteaucitron.job || []).push('goptimize');
</script>
</body>
</html>
2. Retirez ce marqueur HTML du site<script src="https://www.googleoptimize.com/optimize.js?id=ID"></script>
Autre Google Sheets
Installer
Google Sheets
Fermer
1. Ajoutez ce code Javascript pour initialiser le service <script type="text/javascript">
(tarteaucitron.job = tarteaucitron.job || []).push('gsheets');
</script>
</body>
</html>
2. Ajoutez cette partie à l'endroit ou le service doit s'afficher <div class="gsheets_embed" width="width" height="height" id="id" headers="headers"></div>
3. Retirez ce marqueur HTML du site<iframe width="width" height="height" src="https://docs.google.com/spreadsheets/d/e/id/pubhtml?widget=true&headers=headers"></iframe>
Autre Google Signin
Installer
Google Signin
Fermer
1. Ajoutez ce code Javascript pour initialiser le service <script type="text/javascript">
(tarteaucitron.job = tarteaucitron.job || []).push('googlesignin');
</script>
</body>
</html>
2. Retirez ce marqueur HTML du site<script src="https://accounts.google.com/gsi/client" async defer></script>
Autre Google Slides
Installer
Google Slides
Fermer
1. Ajoutez ce code Javascript pour initialiser le service <script type="text/javascript">
(tarteaucitron.job = tarteaucitron.job || []).push('gslides');
</script>
</body>
</html>
2. Ajoutez cette partie à l'endroit ou le service doit s'afficher <div class="gslides_embed" width="width" height="height" id="id" autostart="autostart (true | false)" loop="loop (true | false)" delay="delay"></div>
3. Retirez ce marqueur HTML du site<iframe width="width" height="height" src="https://docs.google.com/presentation/d/e/id/embed?start=autostart (true | false)&loop=loop (true | false)&delayms=delay"></iframe>
Autre hCaptcha
Installer
hCaptcha
Fermer
1. Ajoutez ce code Javascript pour initialiser le service <script type="text/javascript">
(tarteaucitron.job = tarteaucitron.job || []).push('hcaptcha');
</script>
</body>
</html>
2. Ajoutez cette partie à l'endroit ou le service doit s'afficher <div class="h-captcha" data-sitekey="siteKey"></div>
3. Retirez ce marqueur HTML du site<script src="https://hcaptcha.com/1/api.js"></script>
Autre Posthog
Installer
Posthog
Fermer
1. Ajoutez ce code Javascript pour initialiser le service <script type="text/javascript">
tarteaucitron.user.posthogApiKey = 'apiKey';
(tarteaucitron.job = tarteaucitron.job || []).push('posthog');
</script>
</body>
</html>
2. Retirez ce marqueur HTML du site<script>
!function(t,e){var o,n,p,r;e.__SV||(window.posthog=e,e._i=[],e.init=function(i,s,a){function g(t,e){var o=e.split(".");2==o.length&&(t=t[o[0]],e=o[1]),t[e]=function(){t.push([e].concat(Array.prototype.slice.call(arguments,0)))}}(p=t.createElement("script")).type="text/javascript",p.async=!0,p.src=s.api_host+"/static/array.js",(r=t.getElementsByTagName("script")[0]).parentNode.insertBefore(p,r);var u=e;for(void 0!==a?u=e[a]=[]:a="posthog",u.people=u.people||[],u.toString=function(t){var e="posthog";return"posthog"!==a&&(e+="."+a),t||(e+=" (stub)"),e},u.people.toString=function(){return u.toString(1)+".people (stub)"},o="capture identify alias people.set people.set_once set_config register register_once unregister opt_out_capturing has_opted_out_capturing opt_in_capturing reset isFeatureEnabled onFeatureFlags".split(" "),n=0;n<o.length;n++)g(u,o[n]);e._i.push([i,s,a])},e.__SV=1)}(document,window.posthog||[]);
posthog.init('apiKey', {api_host: 'host'})
</script>
Autre Robo Fabrica Chatbot
Installer
Robo Fabrica Chatbot
Fermer
1. Ajoutez ce code Javascript pour initialiser le service <script type="text/javascript">
tarteaucitron.user.robofabricaUuid = 'uuid';
(tarteaucitron.job = tarteaucitron.job || []).push('robofabrica');
</script>
</body>
</html>
2. Ajoutez cette partie à l'endroit ou le service doit s'afficher <button id="inceptive-cw-launch" type="button" name="button"></button>
3. Retirez ce marqueur HTML du site<script src="https://app.robofabrica.tech/widget/script" type="text/javascript" id="inceptive-cw-script" unique-url="uuid" label="start" launch-btn-id="inceptive-cw-launch" chat-server-url="https://app.robofabrica.tech:443"></script>
<button id="inceptive-cw-launch" type="button" name="button" ></button>
Autre sendinblue
Installer
sendinblue
Fermer
1. Ajoutez ce code Javascript pour initialiser le service <script type="text/javascript">
tarteaucitron.user.sendinblueKey = 'Key';
(tarteaucitron.job = tarteaucitron.job || []).push('sendinblue');
</script>
</body>
</html>
2. Retirez ce marqueur HTML du site<script type="text/javascript">
(function() {
window.sib = {
equeue: [],
client_key: "Key"
};
window.sendinblue = {};
for (var j = ['track', 'identify', 'trackLink', 'page'], i = 0; i < j.length; i++) {
(function(k) {
window.sendinblue[k] = function() {
var arg = Array.prototype.slice.call(arguments);
(window.sib[k] || function() {
var t = {};
t[k] = arg;
window.sib.equeue.push(t);
})(arg[0], arg[1], arg[2], arg[3]);
};
})(j[i]);
}
var n = document.createElement("script"),
i = document.getElementsByTagName("script")[0];
n.type = "text/javascript", n.id = "sendinblue-js", n.async = !0, n.src = "https://sibautomation.com/sa.js?key=" + window.sib.client_key, i.parentNode.insertBefore(n, i), window.sendinblue.page();
})();
</script>
Autre service perso
Installer
service perso
Fermer
1. Ajoutez ce code Javascript pour initialiser le service <script type="text/javascript">
(tarteaucitron.job = tarteaucitron.job || []).push('serviceperso');
</script>
</body>
</html>
Autre tolk.ai
Installer
tolk.ai
Fermer
1. Ajoutez ce code Javascript pour initialiser le service <script type="text/javascript">
tarteaucitron.user.tolkaiBot = 'bot';
(tarteaucitron.job = tarteaucitron.job || []).push('tolkai');
</script>
</body>
</html>
2. Retirez ce marqueur HTML du site<script>
var tcfbot = "bot";
var TcfWbchtParams = { behaviour: 'default' };
var display = 'iframe';
var script = document.createElement('script');
script.type = 'text/javascript';
script.src = 'https://script.tolk.ai/iframe-latest.js';
document.body.appendChild(script);
</script>
Autre Trustpilot
Installer
Trustpilot
Fermer
1. Ajoutez ce code Javascript pour initialiser le service <script type="text/javascript">
(tarteaucitron.job = tarteaucitron.job || []).push('trustpilot');
</script>
</body>
</html>
2. Ajoutez cette partie à l'endroit ou le service doit s'afficher <div class="trustpilot-widget" data-locale="dataLocale" data-template-id="templateId" data-businessunit-id="businessunitId" data-style-height="height" data-style-width="width" data-theme="theme (light | dark)" data-stars="stars" data-review-languages="reviewLocale"></div>
3. Retirez ce marqueur HTML du site<script type="text/javascript" src="//widget.trustpilot.com/bootstrap/v5/tp.widget.sync.bootstrap.min.js" async></script>
Autre Ubib Chatbot
Installer
Ubib Chatbot
Fermer
1. Ajoutez ce code Javascript pour initialiser le service <script type="text/javascript">
tarteaucitron.user.ubibId = 'id';
(tarteaucitron.job = tarteaucitron.job || []).push('ubib');
</script>
</body>
</html>
2. Ajoutez cette partie à l'endroit ou le service doit s'afficher <script>tarteaucitron.user.ubibHash = 'hash';</script><div id="libchat_hash"></div>
3. Retirez ce marqueur HTML du site<script src="https://id.libanswers.com/load_chat.php?hash=hash"></script>
Commentaire Disqus
Installer
Disqus
Fermer
1. Ajoutez ce code Javascript pour initialiser le service <script type="text/javascript">
tarteaucitron.user.disqusShortname = 'disqus_shortname';
(tarteaucitron.job = tarteaucitron.job || []).push('disqus');
</script>
</body>
</html>
2. Ajoutez cette partie à l'endroit ou le service doit s'afficher <div id="disqus_thread"></div>
3. Retirez ce marqueur HTML du site<script type="text/javascript">
var disqus_shortname = 'disqus_shortname';
/* * * DON'T EDIT BELOW THIS LINE * * */
(function() {
var dsq = document.createElement('script');
dsq.type = 'text/javascript';
dsq.async = true;
dsq.src = '//' + disqus_shortname + '.disqus.com/embed.js';
(document.getElementsByTagName('head')[0] || document.getElementsByTagName('body')[0]).appendChild(dsq);
})();
</script>
Commentaire Facebook (commentaire)
Installer
Facebook (commentaire)
Fermer
1. Ajoutez ce code Javascript pour initialiser le service <script type="text/javascript">
(tarteaucitron.job = tarteaucitron.job || []).push('facebookcomment');
</script>
</body>
</html>
2. Ajoutez cette partie à l'endroit ou le service doit s'afficher <div class="fb-comments" data-numposts="5" data-colorscheme="light" data-href="CURRENT_URI"></div>
3. Retirez ce marqueur HTML du site<script>(function(d, s, id) {
var js, fjs = d.getElementsByTagName(s)[0];
if (d.getElementById(id)) return;
js = d.createElement(s);
js.id = id;
js.src = "//connect.facebook.net/fr_FR/sdk.js#xfbml=1&version=v2.0";
fjs.parentNode.insertBefore(js, fjs);
}
(document, 'script', 'facebook-jssdk'));
</script>
Google Consent Mode v2 Advertising
Installer
Advertising
Fermer
1. Ajoutez ce code Javascript pour initialiser le service <script type="text/javascript">
(tarteaucitron.job = tarteaucitron.job || []).push('gcmadstorage');
</script>
</body>
</html>
Google Consent Mode v2 Analytics
Installer
Analytics
Fermer
1. Ajoutez ce code Javascript pour initialiser le service <script type="text/javascript">
(tarteaucitron.job = tarteaucitron.job || []).push('gcmanalyticsstorage');
</script>
</body>
</html>
Google Consent Mode v2 Functionality
Installer
Functionality
Fermer
1. Ajoutez ce code Javascript pour initialiser le service <script type="text/javascript">
(tarteaucitron.job = tarteaucitron.job || []).push('gcmfunctionality');
</script>
</body>
</html>
Google Consent Mode v2 Personalization
Installer
Personalization
Fermer
1. Ajoutez ce code Javascript pour initialiser le service <script type="text/javascript">
(tarteaucitron.job = tarteaucitron.job || []).push('gcmpersonalization');
</script>
</body>
</html>
Google Consent Mode v2 Personalized Advertising
Installer
Personalized Advertising
Fermer
1. Ajoutez ce code Javascript pour initialiser le service <script type="text/javascript">
(tarteaucitron.job = tarteaucitron.job || []).push('gcmadsuserdata');
</script>
</body>
</html>
Google Consent Mode v2 Security
Installer
Security
Fermer
1. Ajoutez ce code Javascript pour initialiser le service <script type="text/javascript">
(tarteaucitron.job = tarteaucitron.job || []).push('gcmsecurity');
</script>
</body>
</html>
Mesure d'audience ActiSTAT
Installer
ActiSTAT
Fermer
1. Ajoutez ce code Javascript pour initialiser le service <script type="text/javascript">
tarteaucitron.user.actistatId = 'id';
(tarteaucitron.job = tarteaucitron.job || []).push('actistat');
</script>
</body>
</html>
2. Retirez ce marqueur HTML du site<script async defer data-website-id="id" src="https://actistat.fr/umami.js"></script>
Mesure d'audience Adobe - Analysis Workspace
Installer
Adobe - Analysis Workspace
Fermer
1. Ajoutez ce code Javascript pour initialiser le service <script type="text/javascript">
tarteaucitron.user.adobeworkspaceId1 = 'id1';
(tarteaucitron.job = tarteaucitron.job || []).push('adobeworkspace');
</script>
</body>
</html>
2. Retirez ce marqueur HTML du site<script src="SMARTTAG_JS_LINK"></script>
Mesure d'audience Clarity
Installer
Clarity
Fermer
1. Ajoutez ce code Javascript pour initialiser le service <script type="text/javascript">
tarteaucitron.user.clarity = 'clarity_id';
(tarteaucitron.job = tarteaucitron.job || []).push('clarity');
</script>
</body>
</html>
2. Retirez ce marqueur HTML du site<script type="text/javascript">
(function(c,l,a,r,i,t,y){
c[a]=c[a]||function(){(c[a].q=c[a].q||[]).push(arguments)};
t=l.createElement(r);t.async=1;t.src="https://www.clarity.ms/tag/"+i;
y=l.getElementsByTagName(r)[0];y.parentNode.insertBefore(t,y);
})(window, document, "clarity", "script", "clarity_id");
</script>
Mesure d'audience Clicky
Installer
Clicky
Fermer
1. Ajoutez ce code Javascript pour initialiser le service <script type="text/javascript">
tarteaucitron.user.clickyId = YOUR-ID;
tarteaucitron.user.clickyMore = function () { /* add here your optionnal clicky function */ };
(tarteaucitron.job = tarteaucitron.job || []).push('clicky');
</script>
</body>
</html>
2. Retirez ce marqueur HTML du site<script type="text/javascript">
var clicky_site_ids = clicky_site_ids || [];
clicky_site_ids.push(YOUR-ID);
(function() {
var s = document.createElement('script');
s.type = 'text/javascript';
s.async = true;
s.src = '//static.getclicky.com/js';
( document.getElementsByTagName('head')[0] || document.getElementsByTagName('body')[0] ).appendChild( s ); })();
</script>
Mesure d'audience Compteur.fr
Installer
Compteur.fr
Fermer
1. Ajoutez ce code Javascript pour initialiser le service <script type="text/javascript">
tarteaucitron.user.compteurID = 'compteurID';
(tarteaucitron.job = tarteaucitron.job || []).push('compteur');
</script>
</body>
</html>
2. Retirez ce marqueur HTML du site<span id="wtscompteurID"></span>
<script>
var wts7 = {};
var wts=document.createElement('script');wts.async=true;
wts.src='https://server2.compteur.fr/log7.js';document.head.appendChild(wts);
wts.onload = function(){ wtslog7(compteurID,1); };
</script>
Mesure d'audience ContentSquare
Installer
ContentSquare
Fermer
1. Ajoutez ce code Javascript pour initialiser le service <script type="text/javascript">
tarteaucitron.user.contentsquareID = 'YOUR_TAG_ID';
(tarteaucitron.job = tarteaucitron.job || []).push('contentsquare');
</script>
</body>
</html>
2. Retirez ce marqueur HTML du site<script type="text/javascript">
(function() {
var mt = document.createElement("script"); mt.type = "text/javascript"; mt.async = true;
mt.src = "//t.contentsquare.net/uxa/YOUR_TAG_ID.js";
document.getElementsByTagName("head")[0].appendChild(mt);
})();
</script>
Mesure d'audience Crazy Egg
Installer
Crazy Egg
Fermer
1. Ajoutez ce code Javascript pour initialiser le service <script type="text/javascript">
tarteaucitron.user.crazyeggId = 'account_id';
(tarteaucitron.job = tarteaucitron.job || []).push('crazyegg');
</script>
</body>
</html>
2. Retirez ce marqueur HTML du site<script type="text/javascript">
setTimeout(function(){var a=document.createElement("script");
var b=document.getElementsByTagName("script")[0];
a.src=document.location.protocol+"//dnn506yrbagrg.cloudfront.net/pages/scripts/account_id.js?"+Math.floor(new Date().getTime()/3600000);
a.async=true;a.type="text/javascript";b.parentNode.insertBefore(a,b)}, 1);
</script>
Mesure d'audience eTracker
Installer
eTracker
Fermer
1. Ajoutez ce code Javascript pour initialiser le service <script type="text/javascript">
tarteaucitron.user.etracker = 'data-secure-code';
(tarteaucitron.job = tarteaucitron.job || []).push('etracker');
</script>
</body>
</html>
2. Retirez ce marqueur HTML du site<script id="_etLoader" type="text/javascript" charset="UTF-8" data-secure-code="data-secure-code" src="//static.etracker.com/code/e.js"></script>
1. Ajoutez ce code Javascript pour initialiser le service <script type="text/javascript">
tarteaucitron.user.eulerianHost = 'host';
(tarteaucitron.job = tarteaucitron.job || []).push('eulerian');
</script>
</body>
</html>
2. Retirez ce marqueur HTML du site<script type="text/javascript">
(function(e,a){var i=e.length,y=5381,k='script',s=window,v=document,o=v.createElement(k);for(;i;){i-=1;y=(y*33)^e.charCodeAt(i)}y='_EA_'+(y>>>=0);(function(e,a,s,y){s[a]=s[a]||function(){(s[y]=s[y]||[]).push(arguments);s[y].eah=e;};}(e,a,s,y));i=new Date/1E7|0;o.ea=y;y=i%26;o.async=1;o.src='//'+e+'/'+String.fromCharCode(97+y,122-y,65+y)+(i%1E3)+'.js?2';s=v.getElementsByTagName(k)[0];s.parentNode.insertBefore(o,s);})
('host','EA_push');
EA_push();
</script>
Mesure d'audience FERank (privacy by design)
Installer
FERank (privacy by design)
Fermer
1. Ajoutez ce code Javascript pour initialiser le service <script type="text/javascript">
(tarteaucitron.job = tarteaucitron.job || []).push('ferank');
</script>
</body>
</html>
2. Retirez ce marqueur HTML du site<script type="text/javascript">
(function() {
var ferank = document.createElement('script');
ferank.type = 'text/javascript';
ferank.async = true;
ferank.src = '//static.ferank.fr/pixel.js';
var s = document.getElementsByTagName('script')[0];
s.parentNode.insertBefore(ferank, s);
})();
</script>
Mesure d'audience Firebase
Installer
Firebase
Fermer
1. Ajoutez ce code Javascript pour initialiser le service <script type="text/javascript">
tarteaucitron.user.firebaseApiKey = 'APIKEY';
(tarteaucitron.job = tarteaucitron.job || []).push('firebase');
</script>
</body>
</html>
2. Retirez ce marqueur HTML du site<script>
(function (f, o, r, c, e, _2, _4) {
f.Force24Object = e, f[e] = f[e] || function () {
f[e].q = f[e].q || [], f[e].q.push(arguments)
}, f[e].l = 1 * new Date, _2 = o.createElement(r),
_4 = o.getElementsByTagName(r)[0], _2.async = !0, _2.src = c, _4.parentNode.insertBefore(_2, _4)
})(window, document, "script", "https://static.websites.data-crypt.com/scripts/activity/v3/inject-v3.min.js", "f24");
f24('config', 'set_tracking_id', 'trackingId');
f24('config', 'set_client_id', 'clientId');
</script>
Mesure d'audience FreshSales (CRM)
Installer
FreshSales (CRM)
Fermer
1. Ajoutez ce code Javascript pour initialiser le service <script type="text/javascript">
tarteaucitron.user.freshsalescrmId = 'ID';
(tarteaucitron.job = tarteaucitron.job || []).push('freshsalescrm');
</script>
</body>
</html>
2. Retirez ce marqueur HTML du site<script src='//eu.fw-cdn.com/ID.js' chat='false'></script>
Mesure d'audience Get+
Installer
Get+
Fermer
1. Ajoutez ce code Javascript pour initialiser le service <script type="text/javascript">
tarteaucitron.user.getplusId = 'ACCOUNT_ID';
(tarteaucitron.job = tarteaucitron.job || []).push('getplus');
</script>
</body>
</html>
2. Retirez ce marqueur HTML du site<script type="text/javascript">
var webleads_site_ids = webleads_site_ids || [];
webleads_site_ids.push(ACCOUNT_ID);
(function() {
var s = document.createElement('script');
s.type = 'text/javascript';
s.async = true;
s.src = ( document.location.protocol == 'https:' ? 'https://stats.webleads-tracker.com/js' : 'http://stats.webleads-tracker.com/js' );
( document.getElementsByTagName('head')[0] || document.getElementsByTagName('body')[0] ).appendChild( s );
})();
</script>
Mesure d'audience GetQuanty
Installer
GetQuanty
Fermer
1. Ajoutez ce code Javascript pour initialiser le service <script type="text/javascript">
tarteaucitron.user.getguanty = 'id';
(tarteaucitron.job = tarteaucitron.job || []).push('getquanty');
</script>
</body>
</html>
2. Retirez ce marqueur HTML du site<script async defer src="https://get.smart-data-systems.com/gq?siteid=id&consent=1"></script>
Mesure d'audience Google Analytics (ga.js)
Installer
Google Analytics (ga.js)
Fermer
1. Ajoutez ce code Javascript pour initialiser le service <script type="text/javascript">
tarteaucitron.user.gajsUa = 'UA-XXXXXXXX-X';
tarteaucitron.user.gajsMore = function () { /* add here your optionnal _ga.push() */ };
(tarteaucitron.job = tarteaucitron.job || []).push('gajs');
</script>
</body>
</html>
2. Retirez ce marqueur HTML du site<script>
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-XXXXXXX-X']);
_gaq.push(['_trackPageview']);
(function() {
var ga = document.createElement('script');
ga.type = 'text/javascript';
ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0];
s.parentNode.insertBefore(ga, s);
})();
// your optionnal _ga.push()
</script>
Mesure d'audience Google Analytics (GA4)
Installer
Google Analytics (GA4)
Fermer
1. Ajoutez ce code Javascript pour initialiser le service <script type="text/javascript">
tarteaucitron.user.gtagUa = 'G-XXXXXXXXX';
// tarteaucitron.user.gtagCrossdomain = ['example.com', 'example2.com'];
tarteaucitron.user.gtagMore = function () { /* add here your optionnal gtag() */ };
(tarteaucitron.job = tarteaucitron.job || []).push('gtag');
</script>
</body>
</html>
2. Retirez ce marqueur HTML du site<script async src="https://www.googletagmanager.com/gtag/js?id=G-XXXXXXXXX"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-XXXXXXXXX');
// your optionnal gtag()
</script>
Mesure d'audience Google Analytics (gtag.js) [for multiple UA]
Installer
Google Analytics (gtag.js) [for multiple UA]
Fermer
1. Ajoutez ce code Javascript pour initialiser le service <script type="text/javascript">
tarteaucitron.user.multiplegtagUa = ['UA-XXXXXXXX-X', 'UA-XXXXXXXX-X', 'UA-XXXXXXXX-X'];
(tarteaucitron.job = tarteaucitron.job || []).push('multiplegtag');
</script>
</body>
</html>
2. Retirez ce marqueur HTML du site<script async src="https://www.googletagmanager.com/gtag/js?id=UA-XXXXXXXX-X"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-XXXXXXXX-X');
// your optionnal gtag()
</script>
2. Retirez ce marqueur HTML du site<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-XXXXXXXX-X', 'auto');
ga('send', 'pageview');
// your optionnal ga.push()
</script>
Mesure d'audience Hotjar
Installer
Hotjar
Fermer
1. Ajoutez ce code Javascript pour initialiser le service <script type="text/javascript">
(tarteaucitron.job = tarteaucitron.job || []).push('hotjar');
</script>
</body>
</html>
2. Retirez ce marqueur HTML du site<script>
(function(h,o,t,j,a,r){
h.hj=h.hj||function(){(h.hj.q=h.hj.q||[]).push(arguments)};
h._hjSettings={hjid:hotjarId,hjsv:HotjarSv};
a=o.getElementsByTagName('head')[0];
r=o.createElement('script');r.async=1;
r.src=t+h._hjSettings.hjid+j+h._hjSettings.hjsv;
a.appendChild(r);
})(window,document,'//static.hotjar.com/c/hotjar-','.js?sv=');
</script>
Mesure d'audience Hubspot
Installer
Hubspot
Fermer
1. Ajoutez ce code Javascript pour initialiser le service <script type="text/javascript">
tarteaucitron.user.hubspotId = 'API_KEY';
(tarteaucitron.job = tarteaucitron.job || []).push('hubspot');
</script>
</body>
</html>
2. Retirez ce marqueur HTML du site<script type="text/javascript" id="hs-script-loader" async defer src="//js.hs-scripts.com/API_KEY.js"></script>
Mesure d'audience Kameleoon
Installer
Kameleoon
Fermer
1. Ajoutez ce code Javascript pour initialiser le service <script type="text/javascript">
tarteaucitron.user.kameleoon = 'kameleoon_id';
(tarteaucitron.job = tarteaucitron.job || []).push('kameleoon');
</script>
</body>
</html>
2. Retirez ce marqueur HTML du site<script src="https://kameleoon_id.kameleoon.eu/kameleoon.js"></script>
Mesure d'audience Koban
Installer
Koban
Fermer
1. Ajoutez ce code Javascript pour initialiser le service <script type="text/javascript">
tarteaucitron.user.kobanurl = 'KOBEN_URL';
tarteaucitron.user.kobanapi = 'KOBAN_API';
(tarteaucitron.job = tarteaucitron.job || []).push('koban');
</script>
</body>
</html>
2. Retirez ce marqueur HTML du site<script type="text/javascript">
(function (i, s, o, g, r, a, m) {
i['KobanObject'] = r; i[r] = i[r] || function () {
(i[r].q = i[r].q || []).push(arguments)
}, i[r].l = 1 * new Date(); a = s.createElement(o),
m = s.getElementsByTagName(o)[0]; a.async = 1; a.src = g; m.parentNode.insertBefore(a, m)
})
(window, document, 'script', 'KOBEN_URL', 'kb');
kb('reg', 'KOBAN_API');
</script>
Mesure d'audience Leadinfo
Installer
Leadinfo
Fermer
1. Ajoutez ce code Javascript pour initialiser le service <script type="text/javascript">
tarteaucitron.user.leadinfoId = 'ID';
(tarteaucitron.job = tarteaucitron.job || []).push('leadinfo');
</script>
</body>
</html>
2. Retirez ce marqueur HTML du site<script> (function(l,e,a,d,i,n,f,o){if(!l[i]){l.GlobalLeadinfoNamespace=l.GlobalLeadinfoNamespace||[]; l.GlobalLeadinfoNamespace.push(i);l[i]=function(){(l[i].q=l[i].q||[]).push(arguments)};l[i].t=l[i].t||n; l[i].q=l[i].q||[];o=e.createElement(a);f=e.getElementsByTagName(a)[0];o.async=1;o.src=d;f.parentNode.insertBefore(o,f);} }(window,document,"script","https://cdn.leadinfo.net/ping.js","leadinfo","ID")); </script>
Mesure d'audience Matomo (privacy by design)
Installer
Matomo (privacy by design)
Fermer
1. Ajoutez ce code Javascript pour initialiser le service <script type="text/javascript">
tarteaucitron.user.matomoId = SITE_ID;
(tarteaucitron.job = tarteaucitron.job || []).push('matomo');
</script>
</body>
</html>
2. Retirez ce marqueur HTML du site<script type="text/javascript">
var _paq = _paq || [];
_paq.push(['trackPageView']);
_paq.push(['enableLinkTracking']);
(function() {
var u="YOUR_MATOMO_URL";
_paq.push(['setTrackerUrl', u+'matomo.php']);
_paq.push(['setSiteId', SITE_ID]);
var d=document, g=d.createElement('script'), s=d.getElementsByTagName('script')[0];
g.type='text/javascript'; g.async=true; g.defer=true; g.src='JS_PATH'; s.parentNode.insertBefore(g,s);
})();
</script>
Mesure d'audience Mautic
Installer
Mautic
Fermer
1. Ajoutez ce code Javascript pour initialiser le service <script type="text/javascript">
tarteaucitron.user.mauticurl = 'mautic_url';
(tarteaucitron.job = tarteaucitron.job || []).push('mautic');
</script>
</body>
</html>
2. Retirez ce marqueur HTML du site<script>
(function(w,d,t,u,n,a,m){w['MauticTrackingObject']=n;
w[n]=w[n]||function(){(w[n].q=w[n].q||[]).push(arguments)},a=d.createElement(t),
m=d.getElementsByTagName(t)[0];a.async=1;a.src=u;m.parentNode.insertBefore(a,m)
})(window,document,'script','mautic_url','mt');
mt('send', 'pageview');
</script>
Mesure d'audience MicroAnalytics
Installer
MicroAnalytics
Fermer
1. Ajoutez ce code Javascript pour initialiser le service <script type="text/javascript">
tarteaucitron.user.microanalyticsID = 'ID';
(tarteaucitron.job = tarteaucitron.job || []).push('microanalytics');
</script>
</body>
</html>
2. Retirez ce marqueur HTML du site<script data-host="https://microanalytics.io/" data-dnt="false" src="https://microanalytics.io/js/script.js" id="ID" async defer></script>
Mesure d'audience Microsoft Campaign Analytics
Installer
Microsoft Campaign Analytics
Fermer
1. Ajoutez ce code Javascript pour initialiser le service <script type="text/javascript">
(tarteaucitron.job = tarteaucitron.job || []).push('microsoftcampaignanalytics');
</script>
</body>
</html>
2. Retirez ce marqueur HTML du site<script type="text/javascript"> if (!window.mstag) mstag = {loadTag : function(){},time : (new Date()).getTime()};</script>
<script id="mstag_tops" type="text/javascript" src="https://flex.atdmt.com/mstag/site/UUID/mstag.js"></script>
<script class="conversionmsn" type="text/javascript"> mstag.loadTag("analytics", {dedup:"1",domainId:"domainId",type:"1",actionid:"actionId"})</script>
Mesure d'audience Mixpanel
Installer
Mixpanel
Fermer
1. Ajoutez ce code Javascript pour initialiser le service <script type="text/javascript">
(tarteaucitron.job = tarteaucitron.job || []).push('mixpanel');
</script>
</body>
</html>
2. Retirez ce marqueur HTML du site<script type="text/javascript">
(function (f, b) { if (!b.__SV) { var e, g, i, h; window.mixpanel = b; b._i = []; b.init = function (e, f, c) { function g(a, d) { var b = d.split("."); 2 == b.length && ((a = a[b[0]]), (d = b[1])); a[d] = function () { a.push([d].concat(Array.prototype.slice.call(arguments, 0))); }; } var a = b; "undefined" !== typeof c ? (a = b[c] = []) : (c = "mixpanel"); a.people = a.people || []; a.toString = function (a) { var d = "mixpanel"; "mixpanel" !== c && (d += "." + c); a || (d += " (stub)"); return d; }; a.people.toString = function () { return a.toString(1) + ".people (stub)"; }; i = "disable time_event track track_pageview track_links track_forms track_with_groups add_group set_group remove_group register register_once alias unregister identify name_tag set_config reset opt_in_tracking opt_out_tracking has_opted_in_tracking has_opted_out_tracking clear_opt_in_out_tracking start_batch_senders people.set people.set_once people.unset people.increment people.append people.union people.track_charge people.clear_charges people.delete_user people.remove".split( " "); for (h = 0; h < i.length; h++) g(a, i[h]); var j = "set set_once union unset remove delete".split(" "); a.get_group = function () { function b(c) { d[c] = function () { call2_args = arguments; call2 = [c].concat(Array.prototype.slice.call(call2_args, 0)); a.push([e, call2]); }; } for ( var d = {}, e = ["get_group"].concat( Array.prototype.slice.call(arguments, 0)), c = 0; c < j.length; c++) b(j[c]); return d; }; b._i.push([e, f, c]); }; b.__SV = 1.2; e = f.createElement("script"); e.type = "text/javascript"; e.async = !0; e.src = "undefined" !== typeof MIXPANEL_CUSTOM_LIB_URL ? MIXPANEL_CUSTOM_LIB_URL : "file:" === f.location.protocol && "//cdn.mxpnl.com/libs/mixpanel-2-latest.min.js".match(/^\/\//) ? "https://cdn.mxpnl.com/libs/mixpanel-2-latest.min.js" : "//cdn.mxpnl.com/libs/mixpanel-2-latest.min.js"; g = f.getElementsByTagName("script")[0]; g.parentNode.insertBefore(e, g); } })(document, window.mixpanel || []);
</script>
Mesure d'audience Open Web Analytics
Installer
Open Web Analytics
Fermer
1. Ajoutez ce code Javascript pour initialiser le service <script type="text/javascript">
tarteaucitron.user.openwebanalyticsHost = 'HOST';
(tarteaucitron.job = tarteaucitron.job || []).push('openwebanalytics');
</script>
</body>
</html>
2. Retirez ce marqueur HTML du site<script type='text/javascript' async src='https://app.plezi.co/scripts/ossleads_analytics.js?tenant='pleziTenant'&tw='pleziTw''></script>
Mesure d'audience SharpSpring
Installer
SharpSpring
Fermer
1. Ajoutez ce code Javascript pour initialiser le service <script type="text/javascript">
tarteaucitron.user.ssAccount = 'ACCOUNT';
(tarteaucitron.job = tarteaucitron.job || []).push('sharpspring');
</script>
</body>
</html>
<script>tarteaucitron.user.ssId = 'ID';</script>
2. Retirez ce marqueur HTML du site<script type="text/javascript">
var _ss = _ss || [];
_ss.push(['_setDomain', 'https://ID.marketingautomation.services/net']);
_ss.push(['_setAccount', 'ACCOUNT']);
_ss.push(['_trackPageView']);
window._pa = window._pa || {};
(function() {
var ss = document.createElement('script');
ss.type = 'text/javascript'; ss.async = true;
ss.src = ('https:' == document.location.protocol ? 'https://' : 'http://') + 'ID.marketingautomation.services/client/ss.js?ver=2.4.0';
var scr = document.getElementsByTagName('script')[0];
scr.parentNode.insertBefore(ss, scr);
})();
</script>
Mesure d'audience Shinystat
Installer
Shinystat
Fermer
1. Ajoutez ce code Javascript pour initialiser le service <script type="text/javascript">
tarteaucitron.user.shinystatUser = 'user';
(tarteaucitron.job = tarteaucitron.job || []).push('shinystat');
</script>
</body>
</html>
2. Retirez ce marqueur HTML du site<script src="//codice.shinystat.com/cgi-bin/getcod.cgi?USER=user"></script>
Mesure d'audience Simple Analytics (privacy by design)
Installer
Simple Analytics (privacy by design)
Fermer
1. Ajoutez ce code Javascript pour initialiser le service <script type="text/javascript">
(tarteaucitron.job = tarteaucitron.job || []).push('simpleanalytics');
</script>
</body>
</html>
2. Retirez ce marqueur HTML du site<script async defer src="https://scripts.simpleanalyticscdn.com/latest.js"></script>
<noscript><img src="https://queue.simpleanalyticscdn.com/noscript.gif" alt=""
/></noscript>
Mesure d'audience Snapchat
Installer
Snapchat
Fermer
1. Ajoutez ce code Javascript pour initialiser le service <script type="text/javascript">
tarteaucitron.user.snapchatId = 'snapchatId';
tarteaucitron.user.snapchatMore = function () { /* add here your optionnal snapchat function */ };
(tarteaucitron.job = tarteaucitron.job || []).push('snapchat');
</script>
</body>
</html>
2. Retirez ce marqueur HTML du site<script type='text/javascript'> (function(e,t,n){if(e.snaptr)return;var a=e.snaptr=function() {a.handleRequest?a.handleRequest.apply(a,arguments):a.queue.push(arguments)}; a.queue=[];var s='script';r=t.createElement(s);r.async=!0; r.src=n;var u=t.getElementsByTagName(s)[0]; u.parentNode.insertBefore(r,u);})(window,document, 'https://sc-static.net/scevent.min.js'); snaptr('init', 'snapchatId', { 'user_email': 'snapchatEmail' }); snaptr('track', 'PAGE_VIEW'); </script>
Mesure d'audience StatCounter
Installer
StatCounter
Fermer
1. Ajoutez ce code Javascript pour initialiser le service <script type="text/javascript">
(tarteaucitron.job = tarteaucitron.job || []).push('statcounter');
</script>
</body>
</html>
2. Ajoutez cette partie à l'endroit ou le service doit s'afficher <div class="statcounter-canvas"></div><script type="text/javascript">var sc_project = sc_project, sc_invisible = sc_invisible (0 | 1), sc_security = "sc_security", sc_text = sc_text (0 | 2 | 3 | 4 | 5);</script>
3. Retirez ce marqueur HTML du site<script type="text/javascript">
var scJsHost = (("https:" == document.location.protocol) ?
"https://secure." : "http://www.");
document.write("<sc"+"ript type='text/javascript' src='" +
scJsHost+
"statcounter.com/counter/counter.js'></"+"script>");
</script>
Mesure d'audience Tiktok
Installer
Tiktok
Fermer
1. Ajoutez ce code Javascript pour initialiser le service <script type="text/javascript">
tarteaucitron.user.tiktokId = 'tiktokId';
tarteaucitron.user.tiktokMore = function () { /* add here your optionnal tiktok function */ };
(tarteaucitron.job = tarteaucitron.job || []).push('tiktok');
</script>
</body>
</html>
2. Retirez ce marqueur HTML du site<script> (function() { var ta = document.createElement('script'); ta.type = 'text/javascript'; ta.async = true; ta.src = 'https://analytics.tiktok.com/i18n/pixel/sdk.js?sdkid=tiktokId'; var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ta, s); })(); </script>
Mesure d'audience UserPilot
Installer
UserPilot
Fermer
1. Ajoutez ce code Javascript pour initialiser le service <script type="text/javascript">
tarteaucitron.user.userpilotToken = 'ID';
(tarteaucitron.job = tarteaucitron.job || []).push('userpilot');
</script>
</body>
</html>
2. Retirez ce marqueur HTML du site<script>window.userpilotSettings = {token: "ID"}; </script><script src = "https://js.userpilot.io/sdk/latest.js"></script>
Mesure d'audience Verizon Dot Tag
Installer
Verizon Dot Tag
Fermer
1. Ajoutez ce code Javascript pour initialiser le service <script type="text/javascript">
tarteaucitron.user.verizondottagProjectId = 'verizon_project_id';
(tarteaucitron.job = tarteaucitron.job || []).push('verizondottag');
</script>
</body>
</html>
2. Retirez ce marqueur HTML du site<script type="text/javascript">(function(w,d,t,r,u){w[u]=w[u]||[];w[u].push({properties:{pixelId:"verizon_pixel_id"},
projectId:"verizon_project_id"});var s=d.createElement(t);s.src=r;s.async=true;s.onload=s.onreadystatechange=function(){var y,rs=this.readyState,c=w[u];if(rs&&rs!="complete"&&rs!="loaded"){return}try{y=YAHOO.ywa.I13N.fireBeacon;w[u]=[];w[u].push=function(p){y([p])};y(c)}catch(e){}};var scr=d.getElementsByTagName(t)[0],par=scr.parentNode;par.insertBefore(s,scr)})(window,document,"script","https://s.yimg.com/wi/ytc.js","dotq"); </script>
Mesure d'audience Visiblee
Installer
Visiblee
Fermer
1. Ajoutez ce code Javascript pour initialiser le service <script type="text/javascript">
tarteaucitron.user.visibleeclientid = 'CLIENTID';
(tarteaucitron.job = tarteaucitron.job || []).push('visiblee');
</script>
</body>
</html>
2. Retirez ce marqueur HTML du site<script src="//www.link-page.info/tracking_CLIENTID.js"></script>
Mesure d'audience VisualRevenue
Installer
VisualRevenue
Fermer
1. Ajoutez ce code Javascript pour initialiser le service <script type="text/javascript">
tarteaucitron.user.visualrevenueId = ID;
(tarteaucitron.job = tarteaucitron.job || []).push('visualrevenue');
</script>
</body>
</html>
2. Retirez ce marqueur HTML du site<script type="text/javascript">
var _vrq = _vrq || [];
_vrq.push(['id', ID]);
_vrq.push(['automate', true]);
_vrq.push(['track', function(){}]);
(function(d, a){
var s = d.createElement(a),
x = d.getElementsByTagName(a)[0];
s.async = true;
s.src = 'http://a.visualrevenue.com/vrs.js';
x.parentNode.insertBefore(s, x);
})(document, 'script');
</script>
Mesure d'audience Webmecanik
Installer
Webmecanik
Fermer
1. Ajoutez ce code Javascript pour initialiser le service <script type="text/javascript">
tarteaucitron.user.webmecanikurl = 'webmecanikurl';
(tarteaucitron.job = tarteaucitron.job || []).push('webmecanik');
</script>
</body>
</html>
2. Retirez ce marqueur HTML du site<script>
(function(w, d, t, u, n, a, m) {
w['MauticTrackingObject'] = n;
w[n] = w[n] || function() {
(w[n].q = w[n].q || []).push(arguments)
}, a = d.createElement(t), m = d.getElementsByTagName(t)[0];
a.async = 1;
a.src = u;
m.parentNode.insertBefore(a, m)
})(window, document, 'script', 'webmecanikurl', 'mt');
mt('send', 'pageview');
</script>
Mesure d'audience Weborama
Installer
Weborama
Fermer
1. Ajoutez ce code Javascript pour initialiser le service <script type="text/javascript">
(tarteaucitron.job = tarteaucitron.job || []).push('weborama');
</script>
</body>
</html>
2. Retirez ce marqueur HTML du site<script type="text/javascript" src="https://cstatic.weborama.fr/js/advertiserv2/adperf_conversion.js"></script>
Mesure d'audience Woopra
Installer
Woopra
Fermer
1. Ajoutez ce code Javascript pour initialiser le service <script type="text/javascript">
tarteaucitron.user.woopraDomain = 'woopraDomain';
(tarteaucitron.job = tarteaucitron.job || []).push('woopra');
</script>
</body>
</html>
2. Retirez ce marqueur HTML du site<script>
(function(){
var t,i,e,n=window,o=document,a=arguments,s="script",r=["config","track","identify","visit","push","call","trackForm","trackClick"],c=function(){var t,i=this;for(i._e=[],t=0;r.length>t;t++)(function(t){i[t]=function(){return i._e.push([t].concat(Array.prototype.slice.call(arguments,0))),i}})(r[t])};for(n._w=n._w||{},t=0;a.length>t;t++)n._w[a[t]]=n[a[t]]=n[a[t]]||new c;i=o.createElement(s),i.async=1,i.src="//static.woopra.com/js/w.js",e=o.getElementsByTagName(s)[0],e.parentNode.insertBefore(i,e)
})("woopra");
woopra.config({
domain: woopraDomain
});
woopra.track();
</script>
Mesure d'audience Wysistat
Installer
Wysistat
Fermer
1. Ajoutez ce code Javascript pour initialiser le service <script type="text/javascript">
(tarteaucitron.job = tarteaucitron.job || []).push('wysistat');
</script>
</body>
</html>
2. Retirez ce marqueur HTML du site<!--STATTAG-->
<script type="text/javascript">var valeur=0;</script>
<script type="text/javascript" src="http://www.wysistat.com/statistique.js";></script>
<script type="text/javascript">if (valeur==1){stat("nom","frame","prm","compteurExtranet","page","roi","profiling","compte");}</script>
<noscript><a href="[http://www.wysistat.com"]http://www.wysistat.com"; title="mesure audience internet">mesure d'audience</a></noscript>
<!--/STATTAG-->
Mesure d'audience Wysistat (privacy by design)
Installer
Wysistat (privacy by design)
Fermer
1. Ajoutez ce code Javascript pour initialiser le service <script type="text/javascript">
tarteaucitron.user.wysistatNom = 'nom';
(tarteaucitron.job = tarteaucitron.job || []).push('wysistathightrack');
</script>
</body>
</html>
2. Retirez ce marqueur HTML du site<script type="text/javascript">
var _wsq = _wsq || [];
_wsq.push(['_setNom', 'nom']);
_wsq.push(['_wysistat']);
(function(){
var ws = document.createElement('script');
ws.type = 'text/javascript';
ws.async = true;
ws.src = ('https:' == document.location.protocol ? 'https://www/' : 'http://www/') + '.wysistat.com/ws.jsa';
var s = document.getElementsByTagName('script')[0]||document.getElementsByTagName('body')[0];
s.parentNode.insertBefore(ws, s);
})();
</script>
Mesure d'audience Xiti
Installer
Xiti
Fermer
1. Ajoutez ce code Javascript pour initialiser le service <script type="text/javascript">
tarteaucitron.user.xitiId = 'YOUR-ID';
tarteaucitron.user.xitiMore = function () { /* add here your optionnal xiti function */ };
(tarteaucitron.job = tarteaucitron.job || []).push('xiti');
</script>
</body>
</html>
2. Retirez ce marqueur HTML du site<script src="https://cdn-eu.pagesense.io/js/id/hash.js"></script>
Régie publicitaire Active Campaign
Installer
Active Campaign
Fermer
1. Ajoutez ce code Javascript pour initialiser le service <script type="text/javascript">
tarteaucitron.user.actid = 'actid';
(tarteaucitron.job = tarteaucitron.job || []).push('activecampaign');
</script>
</body>
</html>
2. Retirez ce marqueur HTML du site<script type="text/javascript">
var trackcmp_email = '';
var trackcmp = document.createElement("script");
trackcmp.async = true;
trackcmp.type = 'text/javascript';
trackcmp.src = '//trackcmp.net/visit?actid=actid&e='+encodeURIComponent(trackcmp_email)+'&r='+encodeURIComponent(document.referrer)+'&u='+encodeURIComponent(window.location.href);
var trackcmp_s = document.getElementsByTagName("script");
if (trackcmp_s.length) {
trackcmp_s[0].parentNode.appendChild(trackcmp);
} else {
var trackcmp_h = document.getElementsByTagName("head");
trackcmp_h.length && trackcmp_h[0].appendChild(trackcmp);
}
</script>
Régie publicitaire Ad Up Technology (ads)
Installer
Ad Up Technology (ads)
Fermer
1. Ajoutez ce code Javascript pour initialiser le service <script type="text/javascript">
(tarteaucitron.job = tarteaucitron.job || []).push('aduptech_ads');
</script>
</body>
</html>
2. Ajoutez cette partie à l'endroit ou le service doit s'afficher <div class="aduptech_ads"
placementKey="PLACEMENT_KEY"></div>
1. Ajoutez ce code Javascript pour initialiser le service <script type="text/javascript">
(tarteaucitron.job = tarteaucitron.job || []).push('aduptech_conversion');
</script>
</body>
</html>
2. Ajoutez cette partie à l'endroit ou le service doit s'afficher <div class="aduptech_conversion"
advertiserId="ADVERTISER_ID"
conversionCode="CONVERSION_CODE"></div>
3. Retirez ce marqueur HTML du site<img src="https://d.adup-tech.com/campaign/conversion/ADVERTISER_ID?t=CONVERSION_CODE"
width="1px"
height="1px"
border="0px"
alt="" />
Régie publicitaire Ad Up Technology (retargeting)
Installer
Ad Up Technology (retargeting)
Fermer
1. Ajoutez ce code Javascript pour initialiser le service <script type="text/javascript">
(tarteaucitron.job = tarteaucitron.job || []).push('aduptech_retargeting');
</script>
</body>
</html>
2. Ajoutez cette partie à l'endroit ou le service doit s'afficher <div class="aduptech_retargeting"
account="ACCOUNT_ID"
product='["PRODUCT_ID1", "PRODUCT_ID2"]'
track="productList" ></div>
3. Retirez ce marqueur HTML du site<script type="text/javascript" src="https://s.d.adup-tech.com/services/retargeting.js" async="true"></script>
<script type="text/javascript">
window.AdUpRetargeting = function(api) {
api.setAccount(ACCOUNT_ID)
.setProduct(["PRODUCT_ID1", "PRODUCT_ID2"])
.trackProductList();
};
</script>
Régie publicitaire Adform
Installer
Adform
Fermer
1. Ajoutez ce code Javascript pour initialiser le service <script type="text/javascript">
tarteaucitron.user.adformpm = adformpm;
(tarteaucitron.job = tarteaucitron.job || []).push('adform');
</script>
</body>
</html>
2. Retirez ce marqueur HTML du site<script type="text/javascript">
var _adftrack = {
pm: adformpm,
divider: encodeURIComponent('|'),
pagename: encodeURIComponent('adformpagename')
};
(function () {
var s = document.createElement('script');
s.type = 'text/javascript';
s.async = true;
s.src = '//track.adform.net/serving/scripts/trackpoint/async/';
var x = document.getElementsByTagName('script')[0];
x.parentNode.insertBefore(s, x);
})();
</script>
<noscript>
<p style="margin:0;padding:0;border:0;">
<img src="//track.adform.net/Serving/TrackPoint/?pm=adformpm&ADFPageName=WebsiteName|SectionName|SubSection|PageName&ADFdivider=|" width="1" height="1" alt="" />
</p>
</noscript>
Régie publicitaire Affilae
Installer
Affilae
Fermer
1. Ajoutez ce code Javascript pour initialiser le service <script type="text/javascript">
tarteaucitron.user.affilae = 'PID';
(tarteaucitron.job = tarteaucitron.job || []).push('affilae');
</script>
</body>
</html>
2. Retirez ce marqueur HTML du site<script type="text/javascript"> var _ae = { "pid":"PID", }; (function() { var element = document.createElement('script'); element.type = 'text/javascript'; element.async = true; element.src = '//static.affilae.com/ae-v3.5.js'; var scr = document.getElementsByTagName('script')[0]; scr.parentNode.insertBefore(element, scr); })(); </script>
Régie publicitaire Amazon
Installer
Amazon
Fermer
1. Ajoutez ce code Javascript pour initialiser le service <script type="text/javascript">
(tarteaucitron.job = tarteaucitron.job || []).push('amazon');
</script>
</body>
</html>
2. Ajoutez cette partie à l'endroit ou le service doit s'afficher <div class="amazon_product" amazonid="xxxxx-xx" productid="product_id"></div>
3. Retirez ce marqueur HTML du site<iframe style="width:120px;height:240px;" marginwidth="0" marginheight="0" scrolling="no" frameborder="0" src="//ws-eu.amazon-adsystem.com/widgets/q?ServiceVersion=20070822&OneJS=1&Operation=GetAdHtml&MarketPlace=FR&source=ss&ref=ss_til&ad_type=product_link&tracking_id=amazon_id&marketplace=amazon®ion=FR&placement=product_id&show_border=true&link_opens_in_new_window=true"></iframe>
Régie publicitaire antvoice
Installer
antvoice
Fermer
1. Ajoutez ce code Javascript pour initialiser le service <script type="text/javascript">
tarteaucitron.user.antvoiceId = 'antvoiceId';
(tarteaucitron.job = tarteaucitron.job || []).push('antvoice');
</script>
</body>
</html>
2. Retirez ce marqueur HTML du site<script> window.avDataLayer = window.avDataLayer || []; window.avtag = window.avtag || function(_cmd,_p){window.avDataLayer.push({cmd:_cmd,p:_p});} avtag('init', {id:'antvoiceId'}); </script><script async src="https://static.avads.net/avtag.min.js"></script>
1. Ajoutez ce code Javascript pour initialiser le service <script type="text/javascript">
tarteaucitron.user.bingadsID = 'bingadsID';
(tarteaucitron.job = tarteaucitron.job || []).push('bingads');
</script>
</body>
</html>
2. Retirez ce marqueur HTML du site<script>(function(w,d,t,r,u){var f,n,i;w[u]=w[u]||[],f=function(){var o={ti:"bingadsID"};o.q=w[u],w[u]=new UET(o),w[u].push("pageLoad")},n=d.createElement(t),n.src=r,n.async=1,n.onload=n.onreadystatechange=function(){var s=this.readyState;s&&s!=="loaded"&&s!=="complete"||(f(),n.onload=n.onreadystatechange=null)},i=d.getElementsByTagName(t)[0],i.parentNode.insertBefore(n,i)})(window,document,"script","//bat.bing.com/bat.js","uetq");</script>
Régie publicitaire Clicmanager
Installer
Clicmanager
Fermer
1. Ajoutez ce code Javascript pour initialiser le service <script type="text/javascript">
(tarteaucitron.job = tarteaucitron.job || []).push('clicmanager');
</script>
</body>
</html>
2. Ajoutez cette partie à l'endroit ou le service doit s'afficher <div class="clicmanager-canvas" c="c" s="s" t="t"></div>
3. Retirez ce marqueur HTML du site<script type="text/javascript" src="http://ads.clicmanager.fr/exe.php?c=c&s=s&t=t&q="></script>
Régie publicitaire Criteo
Installer
Criteo
Fermer
1. Ajoutez ce code Javascript pour initialiser le service <script type="text/javascript">
(tarteaucitron.job = tarteaucitron.job || []).push('criteo');
</script>
</body>
</html>
2. Ajoutez cette partie à l'endroit ou le service doit s'afficher <div class="criteo-canvas" zoneid="zoneid"></div>
3. Retirez ce marqueur HTML du site<script type="text/javascript">
document.MAX_ct0 ='';
var m3_u = (location.protocol=='https:'?'https://cas.criteo.com/delivery/ajs.php?':'http://cas.criteo.com/delivery/ajs.php?');
var m3_r = Math.floor(Math.random()*99999999999);
document.write ("<scr"+"ipt type='text/javascript' src='"+m3_u);
document.write ("zoneid=zoneid");document.write("&nodis=1");
document.write ('&cb=' + m3_r);
if (document.MAX_used != ',') document.write ("&exclude=" + document.MAX_used);
document.write (document.charset ? '&charset='+document.charset : (document.characterSet ? '&charset='+document.characterSet : ''));
document.write ("&loc=" + escape(window.location));
if (document.referrer) document.write ("&referer=" + escape(document.referrer));
if (document.context) document.write ("&context=" + escape(document.context));
if ((typeof(document.MAX_ct0) != 'undefined') && (document.MAX_ct0.substring(0,4) == 'http')) {
document.write ("&ct0=" + escape(document.MAX_ct0));
}
if (document.mmm_fo) document.write ("&mmm_fo=1");
document.write ("'></scr"+"ipt>");
</script>
Régie publicitaire Criteo OneTag
Installer
Criteo OneTag
Fermer
1. Ajoutez ce code Javascript pour initialiser le service <script type="text/javascript">
tarteaucitron.user.criteoonetagAccount = account;
(tarteaucitron.job = tarteaucitron.job || []).push('criteoonetag');
</script>
</body>
</html>
2. Retirez ce marqueur HTML du site<script type="text/javascript" src="//static.criteo.net/js/ld/ld.js" async="true"></script>
<script type="text/javascript">
window.criteo_q = window.criteo_q || [];
window.criteo_q.push(
{ event: "setAccount", account: account},
);
</script>
Régie publicitaire Dating Affiliation
Installer
Dating Affiliation
Fermer
1. Ajoutez ce code Javascript pour initialiser le service <script type="text/javascript">
(tarteaucitron.job = tarteaucitron.job || []).push('datingaffiliation');
</script>
</body>
</html>
2. Ajoutez cette partie à l'endroit ou le service doit s'afficher <div class="datingaffiliation-canvas" data-comfrom="data-comfrom" data-r="data-r" data-p="data-p" data-cf0="data-cf0" data-langue="data-langue" data-forwardAffiliate="data-forwardAffiliate" data-cf2="data-cf2" data-cfsa2="data-cfsa2" width="width" height="height"></div>
3. Retirez ce marqueur HTML du site<iframe src="http://www.tools-affil2.com/rotaban/ban.php?comfrom=data-comfrom&r=data-r&p=data-p&cf0=data-cf0&langue=data-langue&forward_affiliate=data-forwardAffiliate&cf2=data-cf2&cfsa2=data-cfsa2" width="width" height="height" frameborder="0" marginheight="0" marginwidth="0" scrolling="no"></iframe>
Régie publicitaire Dating Affiliation (popup)
Installer
Dating Affiliation (popup)
Fermer
1. Ajoutez ce code Javascript pour initialiser le service <script type="text/javascript">
(tarteaucitron.job = tarteaucitron.job || []).push('datingaffiliationpopup');
</script>
</body>
</html>
2. Ajoutez cette partie à l'endroit ou le service doit s'afficher <div class="datingaffiliationpopup-canvas" comfrom="comfrom" promo="promo" productid="productid" submitconfig="submitconfig" ur="ur" brand="brand" lang="lang" cf0="cf0" cf2="cf2" subid1="subid1" cfsa2="cfsa2" subid2="subid2" nicheid="nicheid" degreid="degreid" bt="bt" vis="vis" hid="hid" snd="snd" aabd="aabd" aabs="aabs"></div>
3. Retirez ce marqueur HTML du site<script src="http://www.promotools.biz/da/popunder/script.php?comfrom=comfrom&promo=promo&productid=productid&submitconfig=submitconfig&ur=ur&brand=brand&lang=lang&cf0=cf0&cf2=cf2&subid1=subid1&cfsa2=cfsa2&subid2=subid2&nicheid=nicheid°reid=degreid&bt=bt&vis=vis&hid=hid&snd=snd&aabd=aabd&aabs=aabs"></script>
Régie publicitaire DoubleClick
Installer
DoubleClick
Fermer
1. Ajoutez ce code Javascript pour initialiser le service <script type="text/javascript">
(tarteaucitron.job = tarteaucitron.job || []).push('doubleclick');
</script>
</body>
</html>
2. Retirez ce marqueur HTML du site<iframe src="https://data-id1.fls.doubleclick.net/activityi;src=data-id2;type=data-type;cat=data-cat;item=data-item;quantity=data-quantity;price=data-price;postage=data-postage;seller=data-seller;gdpr=data-gdpr;gdpr_consent=data-gdpr-consent;ord=data-ord;num=data-num;?" width="1" height="1" frameborder="0" style="display:none"></iframe>
Régie publicitaire Equativ
Installer
Equativ
Fermer
1. Ajoutez ce code Javascript pour initialiser le service <script type="text/javascript">
tarteaucitron.user.equativId = 'ID';
(tarteaucitron.job = tarteaucitron.job || []).push('equativ');
</script>
</body>
</html>
2. Retirez ce marqueur HTML du site<script type="application/javascript" src="https://ced.sascdn.com/tag/ID/smart.js" async></script>
Régie publicitaire Eskimi
Installer
Eskimi
Fermer
1. Ajoutez ce code Javascript pour initialiser le service <script type="text/javascript">
tarteaucitron.user.eskimiInit = 'init';
(tarteaucitron.job = tarteaucitron.job || []).push('eskimi');
</script>
</body>
</html>
2. Retirez ce marqueur HTML du site<script> !function(f,e,t,u,n,s,p) {if(f.esk)return;n=f.esk=function(){n.callMethod?n.callMethod.apply(n,arguments):n.queue.push(arguments)};if(!f.___esk)f.___esk=n;n.push=n;n.loaded=!0;n.queue=[];s=e.createElement(t);s.async=!0;s.src=u;p=e.getElementsByTagName(t)[0];p.parentNode.insertBefore(s,p)}(window,document,'script', '[https://dsp-media.eskimi.com/assets/js/e/gtr.min.js?_=0.0.0.4'](https://dsp-media.eskimi.com/assets/js/e/gtr.min.js?_=0.0.0.4%27)); esk('init', 'init'); </script>
Régie publicitaire FERank (pub)
Installer
FERank (pub)
Fermer
1. Ajoutez ce code Javascript pour initialiser le service <script type="text/javascript">
(tarteaucitron.job = tarteaucitron.job || []).push('ferankpub');
</script>
</body>
</html>
2. Ajoutez cette partie à l'endroit ou le service doit s'afficher <ins class="ferank-publicite" client="id_client" style="display:inline-block;width:widthpx;height:heightpx" titre="couleur_titre" texte="couleur_texte"></ins>
3. Retirez ce marqueur HTML du site<script type="text/javascript">
(function() {
var ferank = document.createElement('script');
ferank.type = 'text/javascript';
ferank.async = true;
ferank.src = '//static.ferank.fr/publicite.async.js';
var s = document.getElementsByTagName('script')[0];
s.parentNode.insertBefore(ferank, s);
})();
</script>
Régie publicitaire Google Ads
Installer
Google Ads
Fermer
1. Ajoutez ce code Javascript pour initialiser le service <script type="text/javascript">
tarteaucitron.user.googleadsId = 'AW-XXXXXXXXX';
(tarteaucitron.job = tarteaucitron.job || []).push('googleads');
</script>
</body>
</html>
2. Retirez ce marqueur HTML du site<script async src="https://www.googletagmanager.com/gtag/js?id=AW-XXXXXXXXX"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'AW-XXXXXXXXX');
</script>
Régie publicitaire Google Adsense
Installer
Google Adsense
Fermer
1. Ajoutez ce code Javascript pour initialiser le service <script type="text/javascript">
(tarteaucitron.job = tarteaucitron.job || []).push('adsense');
</script>
</body>
</html>
2. Ajoutez cette partie à l'endroit ou le service doit s'afficher <ins class="adsbygoogle" style="display:inline-block;width:widthpx;height:heightpx" data-ad-client="ca_pub_xxxxxxxxxxxxxxx" data-ad-slot="ad_slot"></ins><script type="text/javascript">(adsbygoogle = window.adsbygoogle || []).push({});</script>
3. Retirez ce marqueur HTML du site<script async src="//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script>
Régie publicitaire Google Adsense Automatic
Installer
Google Adsense Automatic
Fermer
1. Ajoutez ce code Javascript pour initialiser le service <script type="text/javascript">
tarteaucitron.user.adsensecapub = 'caPub';
(tarteaucitron.job = tarteaucitron.job || []).push('adsenseauto');
</script>
</body>
</html>
2. Retirez ce marqueur HTML du site<script async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=caPub" crossorigin="anonymous"></script>
Régie publicitaire Google Adsense Search
Installer
Google Adsense Search
Fermer
1. Ajoutez ce code Javascript pour initialiser le service <script type="text/javascript">
(tarteaucitron.job = tarteaucitron.job || []).push('adsensesearch');
</script>
</body>
</html>
2. Ajoutez cette partie à l'endroit ou le service doit s'afficher <div id="afscontainer1"></div>
<script type="text/javascript" charset="utf-8">
(function(g,o){g[o]=g[o]||function(){(g[o]['q']=g[o]['q']||[]).push(arguments)},g[o]['t']=1*new Date})(window,'_googCsa');
var pageOptions = {
'pubId' : 'test client ID', // Enter your own client-ID here
'query' : 'flowers', // User query for this page
'styleId': '7824176615' // Enter your own style ID here
};
var adblock1 = {
'container' : 'afscontainer1',
'width' : 700
};
var adblock2 = {
'container' : 'afscontainer2',
'width' : 700
};
_googCsa('ads', pageOptions, adblock1, adblock2);
</script>
3. Retirez ce marqueur HTML du site<script async="async" src="https://www.google.com/adsense/search/ads.js"></script>
Régie publicitaire Google Adsense Search (form)
Installer
Google Adsense Search (form)
Fermer
1. Ajoutez ce code Javascript pour initialiser le service <script type="text/javascript">
(tarteaucitron.job = tarteaucitron.job || []).push('adsensesearchform');
</script>
</body>
</html>
2. Ajoutez cette partie à l'endroit ou le service doit s'afficher <form action="url_destination" id="cse-search-box" target="target (_self | _blank)"><div><input type="hidden" name="cx" value="partner-pub-XXXXXXXXXXXX:XXXXXX" /><input type="hidden" name="ie" value="UTF-8" /><input type="text" name="q" size="25" /><input type="submit" name="sa" value="Search" /></div></form>
3. Retirez ce marqueur HTML du site<script type="text/javascript" src="http://www.google.com/coop/cse/brand?form=cse-search-box&lang=en"></script>
Régie publicitaire Google Adsense Search (result)
Installer
Google Adsense Search (result)
Fermer
1. Ajoutez ce code Javascript pour initialiser le service <script type="text/javascript">
tarteaucitron.user.adsensesearchresultCx = 'partner-pub-XXXXXXXXXXXXX:XXXXXXX';
(tarteaucitron.job = tarteaucitron.job || []).push('adsensesearchresult');
</script>
</body>
</html>
2. Ajoutez cette partie à l'endroit ou le service doit s'afficher <gcse:searchresults-only id="gcse_searchresults"></gcse:searchresults-only>
3. Retirez ce marqueur HTML du site<script>
(function() {
var cx = 'partner-pub-XXXXXXXXXXXXX:XXXXXXX';
var gcse = document.createElement('script');
gcse.type = 'text/javascript';
gcse.async = true;
gcse.src = (document.location.protocol == 'https:' ? 'https:' : 'http:') +
'//www.google.com/cse/cse.js?cx=' + cx;
var s = document.getElementsByTagName('script')[0];
s.parentNode.insertBefore(gcse, s);
})();
</script>
Régie publicitaire Google Adwords (conversion)
Installer
Google Adwords (conversion)
Fermer
1. Ajoutez ce code Javascript pour initialiser le service <script type="text/javascript">
(tarteaucitron.job = tarteaucitron.job || []).push('googleadwordsconversion');
</script>
</body>
</html>
2. Retirez ce marqueur HTML du site<script type="text/javascript">
var google_conversion_id = "id";
var google_conversion_label = "label";
var google_conversion_language = "language";
var google_conversion_format = "format";
var google_conversion_color = "color";
var google_conversion_value = value;
var google_conversion_currency = "currency";
var google_remarketing_only = false;
</script>
<script type="text/javascript" src="//www.googleadservices.com/pagead/conversion.js"></script>
Régie publicitaire Google Adwords (remarketing)
Installer
Google Adwords (remarketing)
Fermer
1. Ajoutez ce code Javascript pour initialiser le service <script type="text/javascript">
tarteaucitron.user.adwordsremarketingId = 'id';
(tarteaucitron.job = tarteaucitron.job || []).push('googleadwordsremarketing');
</script>
</body>
</html>
2. Retirez ce marqueur HTML du site<script type="text/javascript">
var google_conversion_id = "id";
var google_custom_params = window.google_tag_params;
var google_remarketing_only = true;
</script>
<script type="text/javascript" src="//www.googleadservices.com/pagead/conversion.js"></script>
Régie publicitaire Google Partners Badge
Installer
Google Partners Badge
Fermer
1. Ajoutez ce code Javascript pour initialiser le service <script type="text/javascript">
(tarteaucitron.job = tarteaucitron.job || []).push('googlepartners');
</script>
</body>
</html>
2. Ajoutez cette partie à l'endroit ou le service doit s'afficher <div class="g-partnersbadge" data-agency-id="id"></div>
3. Retirez ce marqueur HTML du site<script src="https://apis.google.com/js/platform.js" async defer></script>
Régie publicitaire Klaviyo
Installer
Klaviyo
Fermer
1. Ajoutez ce code Javascript pour initialiser le service <script type="text/javascript">
tarteaucitron.user.klaviyoCompanyId = 'CompanyId';
(tarteaucitron.job = tarteaucitron.job || []).push('klaviyo');
</script>
</body>
</html>
2. Retirez ce marqueur HTML du site<script async type="text/javascript" src="//static.klaviyo.com/onsite/js/klaviyo.js?company_id=CompanyId"></script>
Régie publicitaire Kwanko
Installer
Kwanko
Fermer
1. Ajoutez ce code Javascript pour initialiser le service <script type="text/javascript">
(tarteaucitron.job = tarteaucitron.job || []).push('kwanko');
</script>
</body>
</html>
<div class="tac_kwanko" data-mclic="mclic"></div>
2. Retirez ce marqueur HTML du site<img src="https://action.metaffiliation.com/trk.php?mclic=mclic" width="1" height="1" border="0" />
Régie publicitaire Lead Forensics
Installer
Lead Forensics
Fermer
1. Ajoutez ce code Javascript pour initialiser le service <script type="text/javascript">
tarteaucitron.user.leadforensicsId = 'id';
(tarteaucitron.job = tarteaucitron.job || []).push('leadforensics');
</script>
</body>
</html>
2. Retirez ce marqueur HTML du site<script type="text/javascript" src="https://secure.team8save.com/js/sc/id.js"></script>
Régie publicitaire Linkedin Insight
Installer
Linkedin Insight
Fermer
1. Ajoutez ce code Javascript pour initialiser le service <script type="text/javascript">
tarteaucitron.user.linkedininsighttag = 'linkedin_partner_id';
(tarteaucitron.job = tarteaucitron.job || []).push('linkedininsighttag');
</script>
</body>
</html>
2. Retirez ce marqueur HTML du site<script type="text/javascript"><!--//--><![CDATA[// ><!--
_linkedin_partner_id = "linkedin_partner_id";
window._linkedin_data_partner_ids = window._linkedin_data_partner_ids || [];
window._linkedin_data_partner_ids.push(_linkedin_partner_id);
//--><!]]>
</script><script type="text/javascript"><!--//--><![CDATA[// ><!--
(function(){var s = document.getElementsByTagName("script")[0];
var b = document.createElement("script");
b.type = "text/javascript";b.async = true;
b.src = "https://snap.licdn.com/li.lms-analytics/insight.min.js";
s.parentNode.insertBefore(b, s);})();
//--><!]]>
</script><noscript><img height="1" width="1" style="display:none;" alt="" src="https://dc.ads.linkedin.com/collect/?pid=311233&fmt=gif" />
</noscript>
Régie publicitaire Outbrain
Installer
Outbrain
Fermer
1. Ajoutez ce code Javascript pour initialiser le service <script type="text/javascript">
(tarteaucitron.job = tarteaucitron.job || []).push('outbrain');
</script>
</body>
</html>
2. Ajoutez cette partie à l'endroit ou le service doit s'afficher <div class="OUTBRAIN" data-src="PERMALINK" data-widget-id="ID"></div>
3. Retirez ce marqueur HTML du site<script src="https://widgets.outbrain.com/outbrain.js"></script>
Régie publicitaire Outbrain Amplify
Installer
Outbrain Amplify
Fermer
1. Ajoutez ce code Javascript pour initialiser le service <script type="text/javascript">
tarteaucitron.user.outbrainamplifyId = 'id';
(tarteaucitron.job = tarteaucitron.job || []).push('outbrainamplify');
</script>
</body>
</html>
2. Retirez ce marqueur HTML du site<script type="text/javascript">
!function(_window, _document) {
var OB_ADV_ID = 'id';
if (_window.obApi) {
var toArray = function(object) {
return Object.prototype.toString.call(object) === '[object Array]' ? object : [object];
};
_window.obApi.marketerId = toArray(_window.obApi.marketerId).concat(toArray(OB_ADV_ID));
return;
}
var api = _window.obApi = function() {
api.dispatch ? api.dispatch.apply(api, arguments) : api.queue.push(arguments);
};
api.version = '1.1';
api.loaded = true;
api.marketerId = OB_ADV_ID;
api.queue = [];
var tag = _document.createElement('script');
tag.async = true;
tag.src = 'https://amplify.outbrain.com/cp/obtp.js';
tag.type = 'text/javascript';
var script = _document.getElementsByTagName('script')[0];
script.parentNode.insertBefore(tag, script);
}(window, document); obApi('track', 'PAGE_VIEW');
</script>
Régie publicitaire Pinterest Pixel
Installer
Pinterest Pixel
Fermer
1. Ajoutez ce code Javascript pour initialiser le service <script type="text/javascript">
tarteaucitron.user.pinterestpixelId = 'pixelid';
(tarteaucitron.job = tarteaucitron.job || []).push('pinterestpixel');
</script>
</body>
</html>
2. Retirez ce marqueur HTML du site<script>!function(e){if(!window.pintrk){window.pintrk=function(){window.pintrk.queue.push(
Array.prototype.slice.call(arguments))};var
n=window.pintrk;n.queue=[],n.version="3.0";var
t=document.createElement("script");t.async=!0,t.src=e;var
r=document.getElementsByTagName("script")[0];r.parentNode.insertBefore(t,r)}}("https://s.pinimg.com/ct/core.js");
pintrk('load', 'pixelid');
pintrk('page');</script>
Régie publicitaire Piximedia
Installer
Piximedia
Fermer
1. Ajoutez ce code Javascript pour initialiser le service <script type="text/javascript">
tarteaucitron.user.piximediaName = 'NAME';
(tarteaucitron.job = tarteaucitron.job || []).push('piximedia');
</script>
</body>
</html>
2. Retirez ce marqueur HTML du site<script type="text/javascript" src="https://ad.piximedia.com/tools/activity/?NAME||TAG|type (ACTIVITY | LEAD | CONVERSION)|ID|||||"></script>
Régie publicitaire Prelinker
Installer
Prelinker
Fermer
1. Ajoutez ce code Javascript pour initialiser le service <script type="text/javascript">
(tarteaucitron.job = tarteaucitron.job || []).push('prelinker');
</script>
</body>
</html>
2. Ajoutez cette partie à l'endroit ou le service doit s'afficher <div class="prelinker-canvas" siteId="siteId" bannerId="bannerId" defaultLanguage="defaultLanguage" tracker="tracker"></div>
3. Retirez ce marqueur HTML du site<script type="text/javascript" src="//promo.easy-dating.org/banner/index?site_id=siteId&banner_id=bannerId&default_language=defaultLanguage&tr4ck=tracker"></script>
Régie publicitaire Pubdirecte
Installer
Pubdirecte
Fermer
1. Ajoutez ce code Javascript pour initialiser le service <script type="text/javascript">
(tarteaucitron.job = tarteaucitron.job || []).push('pubdirecte');
</script>
</body>
</html>
2. Ajoutez cette partie à l'endroit ou le service doit s'afficher <div class="pubdirecte-canvas" pid="id" ref="ref"></div>
3. Retirez ce marqueur HTML du site<script src="http://www.pubdirecte.com/script/banniere.php?id=id&ref=ref"></script>
Régie publicitaire Reddit
Installer
Reddit
Fermer
1. Ajoutez ce code Javascript pour initialiser le service <script type="text/javascript">
tarteaucitron.user.redditInit = 'INIT';
(tarteaucitron.job = tarteaucitron.job || []).push('reddit');
</script>
</body>
</html>
2. Retirez ce marqueur HTML du site<script>
!function(w,d){if(!w.rdt){var p=w.rdt=function(){p.sendEvent?p.sendEvent.apply(p,arguments):p.callQueue.push(arguments)};p.callQueue=[];var t=d.createElement("script");t.src="https://www.redditstatic.com/ads/pixel.js",t.async=!0;var s=d.getElementsByTagName("script")[0];s.parentNode.insertBefore(t,s)}}(window,document);rdt('init','INIT', {"aaid":"AAID","externalId":"EXTERNAL_ID","idfa":"IDFA"});rdt('track', 'PageVisit');
</script>
Régie publicitaire ShareASale
Installer
ShareASale
Fermer
1. Ajoutez ce code Javascript pour initialiser le service <script type="text/javascript">
(tarteaucitron.job = tarteaucitron.job || []).push('shareasale');
</script>
</body>
</html>
2. Ajoutez cette partie à l'endroit ou le service doit s'afficher <div class="shareasale-canvas" amount="amount" tracking="tracking" transtype="transtype" persale="persale" perlead="perlead" perhit="perhit" merchantID="merchantID"></div>
3. Retirez ce marqueur HTML du site<img src="https://shareasale.com/sale.cfm?amount=amount&tracking=tracking&transtype=transtype&persale=persale&perlead=perlead&perhit=perhit&merchantID=merchantID" width=1 height=1>
Régie publicitaire Skaze
Installer
Skaze
Fermer
1. Ajoutez ce code Javascript pour initialiser le service <script type="text/javascript">
tarteaucitron.user.skazeIdentifier = 'SITE_IDENTIFIER';
tarteaucitron.user.skazeMore = function () { /* add here your optionnal skaze.pushEvent */ };
(tarteaucitron.job = tarteaucitron.job || []).push('skaze');
</script>
</body>
</html>
2. Retirez ce marqueur HTML du site<script async="async"
src="//events.sk.ht/SITE_IDENTIFIER/lib.js"></script>
<script>
var skaze = skaze || {};
skaze.cmd = skaze.cmd || [];
skaze.cmd.push(function() {
skaze.init({ siteIdentifier : "XXX" });
skaze.pushEvent({
name : "YYY",
properties : {
xxx: "yyy",
} });
});
</script>
Régie publicitaire Teads
Installer
Teads
Fermer
1. Ajoutez ce code Javascript pour initialiser le service <script type="text/javascript">
tarteaucitron.user.teadsBuyerPixelId = BUYER_PIXEL_ID;
(tarteaucitron.job = tarteaucitron.job || []).push('teads');
</script>
</body>
</html>
2. Retirez ce marqueur HTML du site<script type="text/javascript" src="https://p.teads.tv/teads-fellow.js" async="true"></script>
<script>
window.teads_e = window.teads_e || [];
window.teads_buyer_pixel_id = BUYER_PIXEL_ID;
</script>
Régie publicitaire TheTradeDesk
Installer
TheTradeDesk
Fermer
1. Ajoutez ce code Javascript pour initialiser le service <script type="text/javascript">
tarteaucitron.user.thetradedeskAdvertiserId = 'ADVERTISER_ID';
(tarteaucitron.job = tarteaucitron.job || []).push('thetradedesk');
</script>
</body>
</html>
2. Retirez ce marqueur HTML du site<script src="https://js.adsrvr.org/up_loader.1.1.0.js" type="text/javascript"></script>
<script type="text/javascript">
ttd_dom_ready( function() {
if (typeof TTDUniversalPixelApi === 'function') {
var universalPixelApi = new TTDUniversalPixelApi();
universalPixelApi.init("ADVERTISER_ID", ["UPIXEL_ID"], "https://insight.adsrvr.org/track/up");
}
});
</script>
Régie publicitaire Twenga
Installer
Twenga
Fermer
1. Ajoutez ce code Javascript pour initialiser le service <script type="text/javascript">
(tarteaucitron.job = tarteaucitron.job || []).push('twenga');
</script>
</body>
</html>
2. Retirez ce marqueur HTML du site<script type="text/javascript" src="//tracker.twenga.locale/st/tracker_id.js"></script>
Régie publicitaire vShop
Installer
vShop
Fermer
1. Ajoutez ce code Javascript pour initialiser le service <script type="text/javascript">
(tarteaucitron.job = tarteaucitron.job || []).push('vshop');
</script>
</body>
</html>
2. Ajoutez cette partie à l'endroit ou le service doit s'afficher <div class="vcashW" style="width: widthpx; height: heightpx;" data-key="key" data-tracking="zone" data-category="category" data-keyword="keyword" data-layout="layout (small | medium | big)" data-theme="theme (shadow | circle)" data-linkColor="link_color" data-textColor="text_color" data-backgroundColor="background_color" data-borderColor="border_color"></div>
3. Retirez ce marqueur HTML du site<script type="text/javascript" src="http://vshop.fr/js/w.js"></script>
Régie publicitaire X (formerly Twitter) Universal Website Tag
Installer
X (formerly Twitter) Universal Website Tag
Fermer
1. Ajoutez ce code Javascript pour initialiser le service <script type="text/javascript">
tarteaucitron.user.twitteruwtId = 'twitter_uwt_Id';
(tarteaucitron.job = tarteaucitron.job || []).push('twitteruwt');
</script>
</body>
</html>
2. Retirez ce marqueur HTML du site<script><!--//--><![CDATA[// ><!--
!function(e,t,n,s,u,a){e.twq||(s=e.twq=function(){s.exe?s.exe.apply(s,arguments):s.queue.push(arguments);
},s.version='1.1',s.queue=[],u=t.createElement(n),u.async=!0,u.src='//static.ads-twitter.com/uwt.js',
a=t.getElementsByTagName(n)[0],a.parentNode.insertBefore(u,a))}(window,document,'script');
// Insert Twitter Pixel ID and Standard Event data below
twq('init','twitter_uwt_Id');
twq('track','PageView');
//--><!]]>
</script>
Régie publicitaire Xandr (Conversion)
Installer
Xandr (Conversion)
Fermer
1. Ajoutez ce code Javascript pour initialiser le service <script type="text/javascript">
(tarteaucitron.job = tarteaucitron.job || []).push('xandrconversion');
</script>
</body>
</html>
2. Ajoutez cette partie à l'endroit ou le service doit s'afficher <div id="uniqId" xandrconversionId="xandrconversionId" xandrconversionSeg="xandrconversionSeg" xandrconversionOrderId="xandrconversionOrderId" xandrconversionValue="xandrconversionValue" xandrconversionRedir="xandrconversionRedir" xandrconversionOther="xandrconversionOther"></div>
3. Retirez ce marqueur HTML du site<img src="//ib.adnxs.com/px?t=2&id=xandrconversionId&seg=xandrconversionSeg&order_id=xandrconversionOrderId&value=xandrconversionValue&redir=xandrconversionRedir&other=xandrconversionOther" width="1" height="1" />
Régie publicitaire Xandr (Segment)
Installer
Xandr (Segment)
Fermer
1. Ajoutez ce code Javascript pour initialiser le service <script type="text/javascript">
(tarteaucitron.job = tarteaucitron.job || []).push('xandrsegment');
</script>
</body>
</html>
2. Ajoutez cette partie à l'endroit ou le service doit s'afficher <div id="uniqId" xandrsegmentAdd="xandrsegmentAdd" xandrsegmentAddCode="xandrsegmentAddCode" xandrsegmentRemove="xandrsegmentRemove" xandrsegmentRemoveCode="xandrsegmentRemoveCode" xandrsegmentMember="xandrsegmentMember" xandrsegmentRedir="xandrsegmentRedir" xandrsegmentValue="xandrsegmentValue" xandrsegmentOther="xandrsegmentOther"></div>
3. Retirez ce marqueur HTML du site<img src="//ib.adnxs.com/seg?t=2&add=xandrsegmentAdd&add_code=xandrsegmentAddCode&remove=xandrsegmentRemove&remove_code=xandrsegmentRemoveCode&member=xandrsegmentMember&redir=xandrsegmentRedir&value=xandrsegmentValue&other=xandrsegmentOther" width="1" height="1" />
Régie publicitaire Xandr (Universal)
Installer
Xandr (Universal)
Fermer
1. Ajoutez ce code Javascript pour initialiser le service <script type="text/javascript">
tarteaucitron.user.xandrId = 'xandrId';
(tarteaucitron.job = tarteaucitron.job || []).push('xandr');
</script>
</body>
</html>
2. Retirez ce marqueur HTML du site<script>!function(e,i){if(!e.pixie){var n=e.pixie=function(e,i,a){n.actionQueue.push({action:e,actionValue:i,params:a})};n.actionQueue=[];var a=i.createElement("script");a.async=!0,a.src="//acdn.adnxs.com/dmp/up/pixie.js";var t=i.getElementsByTagName("head")[0];t.insertBefore(a,t.firstChild)}}(window,document);pixie('init', 'xandrId');pixie('event', 'PageView');</script>
Réseaux sociaux AddThis
Installer
AddThis
Fermer
1. Ajoutez ce code Javascript pour initialiser le service <script type="text/javascript">
tarteaucitron.user.addthisPubId = 'YOUR-PUB-ID';
(tarteaucitron.job = tarteaucitron.job || []).push('addthis');
</script>
</body>
</html>
2. Ajoutez cette partie à l'endroit ou le service doit s'afficher <div class="addthis_inline_share_toolbox"></div>
3. Retirez ce marqueur HTML du site<script type="text/javascript" src="//s7.addthis.com/js/300/addthis_widget.js#pubid=YOUR-PUB-ID"></script>
Réseaux sociaux AddToAny (feed)
Installer
AddToAny (feed)
Fermer
1. Ajoutez ce code Javascript pour initialiser le service <script type="text/javascript">
tarteaucitron.user.addtoanyfeedUri = 'feed_uri';
(tarteaucitron.job = tarteaucitron.job || []).push('addtoanyfeed');
</script>
</body>
</html>
2. Ajoutez cette partie à l'endroit ou le service doit s'afficher <a class="a2a_dd" href="#" onclick="window.open(tarteaucitron.user.addtoanyfeedSubscribeLink)"><img src="//static.addtoany.com/buttons/subscribe_171_16.gif" width="171" height="16" border="0" alt="Subscribe"/></a>
3. Retirez ce marqueur HTML du site<script type="text/javascript">
var a2a_config = a2a_config || {};
a2a_config.linkurl = "feed_uri";
</script>
<script type="text/javascript" src="//static.addtoany.com/menu/feed.js"></script>
Réseaux sociaux AddToAny (share)
Installer
AddToAny (share)
Fermer
1. Ajoutez ce code Javascript pour initialiser le service <script type="text/javascript">
(tarteaucitron.job = tarteaucitron.job || []).push('addtoanyshare');
</script>
</body>
</html>
2. Ajoutez cette partie à l'endroit ou le service doit s'afficher <a class="a2a_dd" href="https://www.addtoany.com/share_save"><img src="//static.addtoany.com/buttons/share_save_171_16.png" width="171" height="16" border="0" alt="Share"/></a>
3. Retirez ce marqueur HTML du site<script type="text/javascript" src="//static.addtoany.com/menu/page.js"></script>
Réseaux sociaux Discord (Server Widget)
Installer
Discord (Server Widget)
Fermer
1. Ajoutez ce code Javascript pour initialiser le service <script type="text/javascript">
(tarteaucitron.job = tarteaucitron.job || []).push('discord');
</script>
</body>
</html>
2. Ajoutez cette partie à l'endroit ou le service doit s'afficher <div class="discord_widget" width="width" height="height" guildID="guildID"></div>
3. Retirez ce marqueur HTML du site<iframe width="width" height="height" src="https://discord.com/widget?id=guildID"></iframe>
Réseaux sociaux eKomi
Installer
eKomi
Fermer
1. Ajoutez ce code Javascript pour initialiser le service <script type="text/javascript">
tarteaucitron.user.ekomiCertId = 'CERT-ID';
(tarteaucitron.job = tarteaucitron.job || []).push('ekomi');
</script>
</body>
</html>
2. Retirez ce marqueur HTML du site<script type="text/javascript">
(function(){
eKomiIntegrationConfig = new Array(
{certId:'CERT-ID'}
);
if(typeof eKomiIntegrationConfig != "undefined"){for(var eKomiIntegrationLoop=0;eKomiIntegrationLoop<eKomiIntegrationConfig.length;eKomiIntegrationLoop++){
var eKomiIntegrationContainer = document.createElement('script');
eKomiIntegrationContainer.type = 'text/javascript'; eKomiIntegrationContainer.defer = true;
eKomiIntegrationContainer.src = (document.location.protocol=='https:'?'https:':'http:') +"//connect.ekomi.de/integration_1410173009/" + eKomiIntegrationConfig[eKomiIntegrationLoop].certId + ".js";
document.getElementsByTagName("head")[0].appendChild(eKomiIntegrationContainer);
}}else{if('console' in window){ console.error('connectEkomiIntegration - Cannot read eKomiIntegrationConfig'); }}
})();
</script>
Réseaux sociaux Facebook
Installer
Facebook
Fermer
1. Ajoutez ce code Javascript pour initialiser le service <script type="text/javascript">
(tarteaucitron.job = tarteaucitron.job || []).push('facebook');
</script>
</body>
</html>
2. Ajoutez cette partie à l'endroit ou le service doit s'afficher <div class="fb-like" data-layout="standard" data-action="like" data-share="true"></div>
3. Retirez ce marqueur HTML du site<script>(function(d, s, id) {
var js, fjs = d.getElementsByTagName(s)[0];
if (d.getElementById(id)) return;
js = d.createElement(s);
js.id = id;
js.src = "//connect.facebook.net/fr_FR/sdk.js#xfbml=1&version=v2.0";
fjs.parentNode.insertBefore(js, fjs);
}
(document, 'script', 'facebook-jssdk'));
</script>
Réseaux sociaux Facebook (Customer Chat)
Installer
Facebook (Customer Chat)
Fermer
1. Ajoutez ce code Javascript pour initialiser le service <script type="text/javascript">
tarteaucitron.user.facebookChatID = ID;
(tarteaucitron.job = tarteaucitron.job || []).push('facebookcustomerchat');
</script>
</body>
</html>
2. Ajoutez cette partie à l'endroit ou le service doit s'afficher <div class="fb-customerchat"></div>
3. Retirez ce marqueur HTML du site<script> (function(d, s, id) {
var js, fjs = d.getElementsByTagName(s)[0];
if (d.getElementById(id)) return;
js = d.createElement(s); js.id = id;
js.src = 'https://connect.facebook.net/en_US/sdk/xfbml.customerchat.js';
fjs.parentNode.insertBefore(js, fjs);
}(document, 'script', 'facebook-jssdk'));
</script>
Réseaux sociaux Facebook (like box)
Installer
Facebook (like box)
Fermer
1. Ajoutez ce code Javascript pour initialiser le service <script type="text/javascript">
(tarteaucitron.job = tarteaucitron.job || []).push('facebooklikebox');
</script>
</body>
</html>
2. Ajoutez cette partie à l'endroit ou le service doit s'afficher <div class="fb-like-box" data-href="page_url" data-width="width" data-height="height" data-colorscheme="light" data-show-faces="faces (true | false)" data-header="header (true | false)" data-stream="posts (false | true)" data-show-border="border (true | false)"></div>
3. Retirez ce marqueur HTML du site<script>(function(d, s, id) {
var js, fjs = d.getElementsByTagName(s)[0];
if (d.getElementById(id)) return;
js = d.createElement(s);
js.id = id;
js.src = "//connect.facebook.net/fr_FR/sdk.js#xfbml=1&version=v2.0";
fjs.parentNode.insertBefore(js, fjs);
}
(document, 'script', 'facebook-jssdk'));
</script>
Réseaux sociaux Facebook (post)
Installer
Facebook (post)
Fermer
1. Ajoutez ce code Javascript pour initialiser le service <script type="text/javascript">
(tarteaucitron.job = tarteaucitron.job || []).push('facebookpost');
</script>
</body>
</html>
2. Ajoutez cette partie à l'endroit ou le service doit s'afficher <div class="tac_facebookpost" data-appId="appId" data-url="url" data-show-text="show_text (true|false)" width="width" height="height"></div>
3. Retirez ce marqueur HTML du site<iframe allowtransparency="true" scrolling="auto" src="https://www.facebook.com/plugins/post.php?href=url&width=width&show_text=show_text&appId=appId&height=height"></iframe>
Réseaux sociaux Facebook Pixel
Installer
Facebook Pixel
Fermer
1. Ajoutez ce code Javascript pour initialiser le service <script type="text/javascript">
tarteaucitron.user.facebookpixelId = 'YOUR-ID'; tarteaucitron.user.facebookpixelMore = function () { /* add here your optionnal facebook pixel function */ };
(tarteaucitron.job = tarteaucitron.job || []).push('facebookpixel');
</script>
</body>
</html>
1. Ajoutez ce code Javascript pour initialiser le service <script type="text/javascript">
(tarteaucitron.job = tarteaucitron.job || []).push('gplus');
</script>
</body>
</html>
2. Ajoutez cette partie à l'endroit ou le service doit s'afficher <div class="g-plusone" data-size="small" data-annotation="inline" data-width="300"></div>
3. Retirez ce marqueur HTML du site<script src="https://apis.google.com/js/platform.js" async defer> {lang: 'fr'} </script>
Réseaux sociaux Google+ (badge)
Installer
Google+ (badge)
Fermer
1. Ajoutez ce code Javascript pour initialiser le service <script type="text/javascript">
(tarteaucitron.job = tarteaucitron.job || []).push('gplusbadge');
</script>
</body>
</html>
2. Ajoutez cette partie à l'endroit ou le service doit s'afficher <div class="g-page" data-width="width" data-href="//plus.google.com/u/0/page_id" data-rel="publisher" data-showtagline="description (true | false)" data-showcoverphoto="cover (true | false)"></div>
3. Retirez ce marqueur HTML du site<script src="https://apis.google.com/js/platform.js" async defer> {lang: 'fr'} </script>
Réseaux sociaux Instagram
Installer
Instagram
Fermer
1. Ajoutez ce code Javascript pour initialiser le service <script type="text/javascript">
(tarteaucitron.job = tarteaucitron.job || []).push('instagram');
</script>
</body>
</html>
2. Ajoutez cette partie à l'endroit ou le service doit s'afficher <div class="instagram_post" postID="postID" width="width" height="height"></div>
3. Retirez ce marqueur HTML du site<iframe src="//www.instagram.com/postID/embed" width="width" height="height" frameborder="0"></iframe>
Réseaux sociaux Linkedin
Installer
Linkedin
Fermer
1. Ajoutez ce code Javascript pour initialiser le service <script type="text/javascript">
(tarteaucitron.job = tarteaucitron.job || []).push('linkedin');
</script>
</body>
</html>
2. Ajoutez cette partie à l'endroit ou le service doit s'afficher <span class="tacLinkedin"></span><script type="IN/Share" data-counter="top"></script>
3. Retirez ce marqueur HTML du site<script src="//platform.linkedin.com/in.js" type="text/javascript"> lang: en_US </script>
Réseaux sociaux Pinterest
Installer
Pinterest
Fermer
1. Ajoutez ce code Javascript pour initialiser le service <script type="text/javascript">
(tarteaucitron.job = tarteaucitron.job || []).push('pinterest');
</script>
</body>
</html>
2. Ajoutez cette partie à l'endroit ou le service doit s'afficher <span class="tacPinterest"></span><a href="//www.pinterest.com/pin/create/button/" data-pin-do="buttonBookmark" data-pin-color="white"></a>
3. Retirez ce marqueur HTML du site<a href="//www.pinterest.com/pin/create/button/" data-pin-do="buttonBookmark">
<img src="//assets.pinterest.com/images/pidgets/pinit_fg_en_rect_gray_20.png" />
</a>
<script type="text/javascript" async src="//assets.pinterest.com/js/pinit.js"></script>
Réseaux sociaux Shareaholic
Installer
Shareaholic
Fermer
1. Ajoutez ce code Javascript pour initialiser le service <script type="text/javascript">
tarteaucitron.user.shareaholicSiteId = 'site_id';
(tarteaucitron.job = tarteaucitron.job || []).push('shareaholic');
</script>
</body>
</html>
2. Ajoutez cette partie à l'endroit ou le service doit s'afficher <div class='shareaholic-canvas' data-app='share_buttons' data-app-id='app_id'></div>
3. Retirez ce marqueur HTML du site<script type="text/javascript">
(function() {
var shr = document.createElement('script');
shr.setAttribute('data-cfasync', 'false');
shr.src = '//dsms0mj1bbhn4.cloudfront.net/assets/pub/shareaholic.js';
shr.type = 'text/javascript';
shr.async = 'true';
shr.onload = shr.onreadystatechange = function() {
var rs = this.readyState;
if (rs && rs != 'complete' && rs != 'loaded') return;
var site_id = 'site_id';
try {
Shareaholic.init(site_id);
}
catch (e) {}
};
var s = document.getElementsByTagName('script')[0];
s.parentNode.insertBefore(shr, s);
})();
</script>
Réseaux sociaux ShareThis
Installer
ShareThis
Fermer
1. Ajoutez ce code Javascript pour initialiser le service <script type="text/javascript">
tarteaucitron.user.sharethisPublisher = 'publisher';
(tarteaucitron.job = tarteaucitron.job || []).push('sharethis');
</script>
</body>
</html>
2. Ajoutez cette partie à l'endroit ou le service doit s'afficher <span class="tacSharethis"></span>services_list_spans
3. Retirez ce marqueur HTML du site<script type="text/javascript">
var switchTo5x=true;
</script>
<script type="text/javascript" src="http://w.sharethis.com/button/buttons.js"></script>
<script type="text/javascript">stLight.options({publisher: "publisher", doNotHash: false, doNotCopy: false, hashAddressBar: false});</script>
Réseaux sociaux ShareThis Sticky
Installer
ShareThis Sticky
Fermer
1. Ajoutez ce code Javascript pour initialiser le service <script type="text/javascript">
tarteaucitron.user.sharethisStickyProperty = 'property';
(tarteaucitron.job = tarteaucitron.job || []).push('sharethissticky');
</script>
</body>
</html>
2. Retirez ce marqueur HTML du site<script type='text/javascript' src='https://platform-api.sharethis.com/js/sharethis.js#property=property&product=sticky-share-buttons' async='async'></script>
Réseaux sociaux X (formerly Twitter)
Installer
X (formerly Twitter)
Fermer
1. Ajoutez ce code Javascript pour initialiser le service <script type="text/javascript">
(tarteaucitron.job = tarteaucitron.job || []).push('twitter');
</script>
</body>
</html>
2. Ajoutez cette partie à l'endroit ou le service doit s'afficher <span class="tacTwitter"></span><a href="https://twitter.com/share" class="twitter-share-button" data-via="twitter_username" data-count="vertical" data-dnt="true"></a>
3. Retirez ce marqueur HTML du site<script>!function(d,s,id){var js,fjs=d.getElementsByTagName(s)[0],p=/^http:/.test(d.location)?'http':'https';if(!d.getElementById(id)){js=d.createElement(s); js.id=id; js.src=p+'://platform.twitter.com/widgets.js'; fjs.parentNode.insertBefore(js,fjs);}}(document, 'script', 'twitter-wjs');</script>
Réseaux sociaux X (formerly Twitter) cards
Installer
X (formerly Twitter) cards
Fermer
1. Ajoutez ce code Javascript pour initialiser le service <script type="text/javascript">
(tarteaucitron.job = tarteaucitron.job || []).push('twitterembed');
</script>
</body>
</html>
2. Ajoutez cette partie à l'endroit ou le service doit s'afficher <div class="twitterembed-canvas" tweetid="tweet_id" data-width="width" theme="theme (light | dark)" cards="cards (show | hidden)" conversation="conversation (show | none)" data-align="align (left | center | right)"></div>
3. Retirez ce marqueur HTML du site<script>!function(d,s,id){var js,fjs=d.getElementsByTagName(s)[0],p=/^http:/.test(d.location)?'http':'https';if(!d.getElementById(id)){js=d.createElement(s); js.id=id; js.src=p+'://platform.twitter.com/widgets.js'; fjs.parentNode.insertBefore(js,fjs);}}(document, 'script', 'twitter-wjs');</script>
Réseaux sociaux X (formerly Twitter) timelines
Installer
X (formerly Twitter) timelines
Fermer
1. Ajoutez ce code Javascript pour initialiser le service <script type="text/javascript">
(tarteaucitron.job = tarteaucitron.job || []).push('twittertimeline');
</script>
</body>
</html>
2. Ajoutez cette partie à l'endroit ou le service doit s'afficher <span class="tacTwitterTimelines"></span><a class="twitter-timeline" href="twitter_url" data-tweet-limit="tweet-limit" data-dnt="dnt (true | false)" data-width="width" data-height="height" data-theme="theme (dark | light)" data-link-color="hex link-color"></a>
3. Retirez ce marqueur HTML du site<script>!function(d,s,id){var js,fjs=d.getElementsByTagName(s)[0],p=/^http:/.test(d.location)?'http':'https';if(!d.getElementById(id)){js=d.createElement(s); js.id=id; js.src=p+'://platform.twitter.com/widgets.js'; fjs.parentNode.insertBefore(js,fjs);}}(document, 'script', 'twitter-wjs');</script>
Support Dialog Insight
Installer
Dialog Insight
Fermer
1. Ajoutez ce code Javascript pour initialiser le service <script type="text/javascript">
tarteaucitron.user.dialogInsightId = 'ID';
(tarteaucitron.job = tarteaucitron.job || []).push('dialoginsight');
</script>
</body>
</html>
2. Retirez ce marqueur HTML du site<script type="text/javascript" src=https://t.ofsys.com/js/Journey/1/ID/DI.Journey-min.js></script>
Support Elfsight
Installer
Elfsight
Fermer
1. Ajoutez ce code Javascript pour initialiser le service <script type="text/javascript">
(tarteaucitron.job = tarteaucitron.job || []).push('elfsight');
</script>
</body>
</html>
2. Ajoutez cette partie à l'endroit ou le service doit s'afficher <div class="elfsight-app-elfsightKey"></div>
3. Retirez ce marqueur HTML du site<script src="https://apps.elfsight.com/p/platform.js" defer></script>
Support Intercom
Installer
Intercom
Fermer
1. Ajoutez ce code Javascript pour initialiser le service <script type="text/javascript">
tarteaucitron.user.intercomKey = 'intercomKey';
(tarteaucitron.job = tarteaucitron.job || []).push('intercomChat');
</script>
</body>
</html>
2. Retirez ce marqueur HTML du site<script>(function () {
var w = window;
var ic = w.Intercom;
if (typeof ic === 'function') {
ic('reattach_activator');
ic('update', w.intercomSettings);
} else {
var d = document;
var i = function () {
i.c(arguments);
};
i.q = [];
i.c = function (args) {
i.q.push(args);
};
w.Intercom = i;
var l = function () {
var s = d.createElement('script');
s.type = 'text/javascript';
s.async = true;
s.src = 'https://widget.intercom.io/widget/intercomKey';
var x = d.getElementsByTagName('script')[0];
x.parentNode.insertBefore(s, x);
};
if (w.attachEvent) {
w.attachEvent('onload', l);
} else {
w.addEventListener('load', l, false);
}
}
})();</script>
Support Marker.io
Installer
Marker.io
Fermer
1. Ajoutez ce code Javascript pour initialiser le service <script type="text/javascript">
tarteaucitron.user.markerioProjectId = 'PROJECT_ID';
(tarteaucitron.job = tarteaucitron.job || []).push('markerio');
</script>
</body>
</html>
2. Retirez ce marqueur HTML du site<script>
window.markerConfig = {
project: 'PROJECT_ID',
source: 'snippet'
};
!function(e,r,a){if(!e.__Marker){e.__Marker={};var t=[],n={__cs:t};["show","hide","isVisible","capture","cancelCapture","unload","reload","isExtensionInstalled","setReporter","setCustomData","on","off"].forEach(function(e){n[e]=function(){var r=Array.prototype.slice.call(arguments);r.unshift(e),t.push(r)}}),e.Marker=n;var s=r.createElement("script");s.async=1,s.src="https://edge.marker.io/latest/shim.js";var i=r.getElementsByTagName("script")[0];i.parentNode.insertBefore(s,i)}}(window,document);
</script>
Support Pipedrive
Installer
Pipedrive
Fermer
1. Ajoutez ce code Javascript pour initialiser le service <script type="text/javascript">
tarteaucitron.user.pipedriveCompany = companyId;
(tarteaucitron.job = tarteaucitron.job || []).push('pipedrive');
</script>
</body>
</html>
2. Retirez ce marqueur HTML du site<script type="text/javascript">var Tawk_API=Tawk_API||{};
var Tawk_LoadStart=new Date();
(function(){ var s1=document.createElement("script"),s0=document.getElementsByTagName("script")[0]; s1.async=true; s1.src='https://embed.tawk.to/ID/WidgetID'; s1.charset='UTF-8'; s1.setAttribute('crossorigin','*'); s0.parentNode.insertBefore(s1,s0); })();</script>
Support Tolk.ai Genii
Installer
Tolk.ai Genii
Fermer
1. Ajoutez ce code Javascript pour initialiser le service <script type="text/javascript">
tarteaucitron.user.tolkaiGeniiProject = 'PROJECTID';
(tarteaucitron.job = tarteaucitron.job || []).push('tolkaigenii');
</script>
</body>
</html>
2. Retirez ce marqueur HTML du site<script
type="module"
project-id="PROJECTID"
template="widget"
src="https://genii-script.tolk.ai/lightchat.js"
id="lightchat-bot">
</script>
Support Userlike
Installer
Userlike
Fermer
1. Ajoutez ce code Javascript pour initialiser le service <script type="text/javascript">
tarteaucitron.user.userlikeKey = 'userlikekey';
(tarteaucitron.job = tarteaucitron.job || []).push('userlike');
</script>
</body>
</html>
2. Retirez ce marqueur HTML du site<script type="text/javascript" src="https://userlike-cdn-widgets.s3-eu-west-1.amazonaws.com/userlikekey"></script>
Support UserVoice
Installer
UserVoice
Fermer
1. Ajoutez ce code Javascript pour initialiser le service <script type="text/javascript">
tarteaucitron.user.userVoiceApi = 'YOUR_API_KEY';
(tarteaucitron.job = tarteaucitron.job || []).push('uservoice');
</script>
</body>
</html>
2. Ajoutez cette partie à l'endroit ou le service doit s'afficher <script type="text/javascript">UserVoice=window.UserVoice||[];UserVoice.push(['addTrigger', {mode: 'contact', trigger_position: 'position', trigger_color: 'color', trigger_background_color: 'background-color', accent_color: 'accent_color'}]);</script>
3. Retirez ce marqueur HTML du site<script type="text/javascript">
(function(){
var uv=document.createElement('script');
uv.type='text/javascript';
uv.async=true;
uv.src='//widget.uservoice.com/YOUR_API_KEY.js';
var s=document.getElementsByTagName('script')[0];
s.parentNode.insertBefore(uv,s)
})();
</script>
Support Zoho SalesIQ
Installer
Zoho SalesIQ
Fermer
1. Ajoutez ce code Javascript pour initialiser le service <script type="text/javascript">
tarteaucitron.user.zohoWidgetCode = 'WIDGET_CODE';
(tarteaucitron.job = tarteaucitron.job || []).push('zoho');
</script>
</body>
</html>
2. Retirez ce marqueur HTML du site<script type="text/javascript">
var $zoho=$zoho || {};$zoho.salesiq = $zoho.salesiq || {widgetcode:"WIDGET_CODE", values:{},ready:function(){}};var d=document;s=d.createElement("script");s.type="text/javascript";s.id="zsiqscript";s.defer=true;s.src="https://salesiq.zoho.eu/widget";t=d.getElementsByTagName("script")[0];t.parentNode.insertBefore(s,t);d.write("<div
id='zsiqwidget'></div>");
</script>
Support Zopim
Installer
Zopim
Fermer
1. Ajoutez ce code Javascript pour initialiser le service <script type="text/javascript">
tarteaucitron.user.zopimID = 'zopim_id';
(tarteaucitron.job = tarteaucitron.job || []).push('zopim');
</script>
</body>
</html>
2. Retirez ce marqueur HTML du site<script type="text/javascript">
window.$zopim||(function(d,s){var z=$zopim=function(c){z._.push(c)},$=z.s=
d.createElement(s),e=d.getElementsByTagName(s)[0];z.set=function(o){z.set.
_.push(o)};z._=[];z.set._=[];$.async=!0;$.setAttribute('charset','utf-8');
$.src='//v2.zopim.com/?zopim_id';z.t=+new Date;$.
type='text/javascript';e.parentNode.insertBefore($,e)})(document,'script');
</script>
Vidéo Acast
Installer
Acast
Fermer
1. Ajoutez ce code Javascript pour initialiser le service <script type="text/javascript">
(tarteaucitron.job = tarteaucitron.job || []).push('acast');
</script>
</body>
</html>
2. Ajoutez cette partie à l'endroit ou le service doit s'afficher <div class="acast_embed" height="height" width="width" id1="id1" id2="id2" seek="seek"></div>
3. Retirez ce marqueur HTML du site<iframe height="height" width="width" src="https://embed.acast.com/id1/id2?seek=seek></iframe>
Vidéo Arte.tv
Installer
Arte.tv
Fermer
1. Ajoutez ce code Javascript pour initialiser le service <script type="text/javascript">
(tarteaucitron.job = tarteaucitron.job || []).push('artetv');
</script>
</body>
</html>
2. Ajoutez cette partie à l'endroit ou le service doit s'afficher <div class="artetv_player" json="video_json" width="width" height="height"></div>
3. Retirez ce marqueur HTML du site<iframe style="transition-duration: 0; transition-property: no; margin: 0 auto; position: relative; display: block; background-color: #000000;" src="https://www.arte.tv/player/v5/index.php?json_url=video_json" width="width" height="height" frameborder="0" scrolling="no" allowfullscreen="allowfullscreen"></iframe>
Vidéo Ausha
Installer
Ausha
Fermer
1. Ajoutez ce code Javascript pour initialiser le service <script type="text/javascript">
(tarteaucitron.job = tarteaucitron.job || []).push('ausha');
</script>
</body>
</html>
2. Ajoutez cette partie à l'endroit ou le service doit s'afficher <div class="ausha_player" data-height="data-height" data-podcast-id="data-podcast-id" data-player-id="data-player-id" data-playlist="data-playlist" data-color="data-color" data-useshowid="useshowid (0 | 1)"></div>
3. Retirez ce marqueur HTML du site<iframe frameborder="0" loading="lazy" id="ausha-Zhaw" height="data-height" style="border: none; width:100%; height:220px" src="https://player.ausha.co/index.html?podcastId=data-podcast-id&v=3&playerId=data-player-id"></iframe><script src="https://player.ausha.co/ausha-player.js"></script>
Vidéo Bandcamp
Installer
Bandcamp
Fermer
1. Ajoutez ce code Javascript pour initialiser le service <script type="text/javascript">
(tarteaucitron.job = tarteaucitron.job || []).push('bandcamp');
</script>
</body>
</html>
2. Ajoutez cette partie à l'endroit ou le service doit s'afficher <div class="bandcamp_player" albumID="album_id" size="size (small | large)" artwork="artwork (small | none)" transparent="transparent (true | false)" minimal="minimal (true | false)" tracklist="tracklist (true | false)" linkcol="linkcol" package="package" bgcol="bgcol" width="width" height="height"></div>
3. Retirez ce marqueur HTML du site<iframe src="https://bandcamp.com/EmbeddedPlayer/album=album_id/" width="width" height="height" frameborder="0" scrolling="yes" allowfullscreen="allowfullscreen"></iframe>
Vidéo Calaméo
Installer
Calaméo
Fermer
1. Ajoutez ce code Javascript pour initialiser le service <script type="text/javascript">
(tarteaucitron.job = tarteaucitron.job || []).push('calameo');
</script>
</body>
</html>
2. Ajoutez cette partie à l'endroit ou le service doit s'afficher <div class="calameo-canvas" data-id="bkcode" width="width" height="height"></div>
3. Retirez ce marqueur HTML du site<iframe src="//v.calameo.com/?bkcode=bkcode" width="width" height="height" frameborder="0" scrolling="no" allowtransparency allowfullscreen style="margin:0 auto;"></iframe>
Vidéo Calaméo Library
Installer
Calaméo Library
Fermer
1. Ajoutez ce code Javascript pour initialiser le service <script type="text/javascript">
(tarteaucitron.job = tarteaucitron.job || []).push('calameolibrary');
</script>
</body>
</html>
2. Ajoutez cette partie à l'endroit ou le service doit s'afficher <div class="calameolibrary-canvas" data-id="id" width="width" height="height"></div>
3. Retirez ce marqueur HTML du site<iframe src="//v.calameo.com/library/?type=subscription&id=id" width="width" height="height" frameborder="0" scrolling="no" allowtransparency allowfullscreen style="margin:0 auto;"></iframe>
Vidéo Canal-U.tv
Installer
Canal-U.tv
Fermer
1. Ajoutez ce code Javascript pour initialiser le service <script type="text/javascript">
(tarteaucitron.job = tarteaucitron.job || []).push('canalu');
</script>
</body>
</html>
2. Ajoutez cette partie à l'endroit ou le service doit s'afficher <div class="canalu_player" videoTitle="videoTitle"></div>
3. Retirez ce marqueur HTML du site<iframe src="https://www.canal-u.tv/video/embed_code_plugin.1/videoTitle" frameborder="0" allowfullscreen></iframe>
Vidéo Dailymotion
Installer
Dailymotion
Fermer
1. Ajoutez ce code Javascript pour initialiser le service <script type="text/javascript">
(tarteaucitron.job = tarteaucitron.job || []).push('dailymotion');
</script>
</body>
</html>
2. Ajoutez cette partie à l'endroit ou le service doit s'afficher <div class="dailymotion_player" videoID="video_id" width="width" height="height" showinfo="showinfo (1 | 0)" autoplay="autoplay (0 | 1)" embedType="embedType (video | playlist)"></div>
3. Retirez ce marqueur HTML du site<iframe width="width" height="height" src="//www.dailymotion.com/embed/video/video_id" frameborder="0" allowfullscreen></iframe>
Vidéo Deezer
Installer
Deezer
Fermer
1. Ajoutez ce code Javascript pour initialiser le service <script type="text/javascript">
(tarteaucitron.job = tarteaucitron.job || []).push('deezer');
</script>
</body>
</html>
2. Ajoutez cette partie à l'endroit ou le service doit s'afficher <div class="deezer_player" deezerID="deezerID" theme="theme (auto | dark | light)" embedType="type (album | track | playlist)" radius="radius (true | false)" tracklist="tracklist (true | false)" width="width" height="height"></div>
3. Retirez ce marqueur HTML du site<iframe src="//widget.deezer.com/widget/theme (auto | dark | light)/type (album | track | playlist)/deezerID" width="width" height="height" frameborder="0" allowfullscreen></iframe>
Vidéo France Culture
Installer
France Culture
Fermer
1. Ajoutez ce code Javascript pour initialiser le service <script type="text/javascript">
(tarteaucitron.job = tarteaucitron.job || []).push('fculture');
</script>
</body>
</html>
2. Ajoutez cette partie à l'endroit ou le service doit s'afficher <div class="fculture_embed" id="id" height="height" width="width"></div>
3. Retirez ce marqueur HTML du site<iframe src="https://www.franceculture.fr/player/export-reecouter?content=id" height="height" width="width"></iframe>
Vidéo Internet Archive
Installer
Internet Archive
Fermer
1. Ajoutez ce code Javascript pour initialiser le service <script type="text/javascript">
(tarteaucitron.job = tarteaucitron.job || []).push('archive');
</script>
</body>
</html>
2. Ajoutez cette partie à l'endroit ou le service doit s'afficher <div class="archive_player" data-videoID="videoID" data-width="width" data-height="height"></div>
3. Retirez ce marqueur HTML du site<iframe src="https://archive.org/embed/videoID" width="width" height="height" frameborder="0" webkitallowfullscreen="true" mozallowfullscreen="true" allowfullscreen></iframe>
Vidéo Issuu
Installer
Issuu
Fermer
1. Ajoutez ce code Javascript pour initialiser le service <script type="text/javascript">
(tarteaucitron.job = tarteaucitron.job || []).push('issuu');
</script>
</body>
</html>
2. Ajoutez cette partie à l'endroit ou le service doit s'afficher <div class="issuu_player" issuuID="your_issuu_id" width="width" height="height"></div>
3. Retirez ce marqueur HTML du site<iframe style="width:width; height:height;" src="//e.issuu.com/embed.html#your_issue_id" frameborder="0" allowfullscreen></iframe>
Vidéo Mixcloud
Installer
Mixcloud
Fermer
1. Ajoutez ce code Javascript pour initialiser le service <script type="text/javascript">
(tarteaucitron.job = tarteaucitron.job || []).push('mixcloud');
</script>
</body>
</html>
2. Ajoutez cette partie à l'endroit ou le service doit s'afficher <div class="mixcloud_embed" height="height" width="width" hidecover="hidecover (0 | 1)" mini="mini (0 | 1)" light="light (0 | 1)" id="id"></div>
3. Retirez ce marqueur HTML du site<iframe height="height" width="width" src="https://www.mixcloud.com/widget/iframe/?hide_cover=hidecover (0 | 1)&mini=mini (0 | 1)&light=light (0 | 1)&feed=id"></iframe>
Vidéo PlayPlay
Installer
PlayPlay
Fermer
1. Ajoutez ce code Javascript pour initialiser le service <script type="text/javascript">
(tarteaucitron.job = tarteaucitron.job || []).push('playplay');
</script>
</body>
</html>
2. Ajoutez cette partie à l'endroit ou le service doit s'afficher <div class="tac_playplay" data-id="id" width="width" height="height"></div>
3. Retirez ce marqueur HTML du site<iframe src="https://playplay.com/app/embed-video/id"></iframe>
Vidéo podCloud
Installer
podCloud
Fermer
1. Ajoutez ce code Javascript pour initialiser le service <script type="text/javascript">
(tarteaucitron.job = tarteaucitron.job || []).push('podcloud');
</script>
</body>
</html>
2. Ajoutez cette partie à l'endroit ou le service doit s'afficher <div class="tac_podcloud" data-url="url" width="width" height="height"></div>
3. Retirez ce marqueur HTML du site<iframe allowtransparency="true" scrolling="auto" src="url" style="width:width;height:height;border:none;"></iframe>
Vidéo Prezi
Installer
Prezi
Fermer
1. Ajoutez ce code Javascript pour initialiser le service <script type="text/javascript">
(tarteaucitron.job = tarteaucitron.job || []).push('prezi');
</script>
</body>
</html>
2. Ajoutez cette partie à l'endroit ou le service doit s'afficher <div class="prezi-canvas" data-id="slide_id" width="width" height="height"></div>
3. Retirez ce marqueur HTML du site<iframe src="https://prezi.com/embed/slide_id/?bgcolor=ffffff&lock_to_path=1&autoplay=0&autohide_ctrls=0" allowfullscreen="" mozallowfullscreen="" webkitallowfullscreen="" frameborder="0" height="height" width="width"></iframe>
Vidéo SlideShare
Installer
SlideShare
Fermer
1. Ajoutez ce code Javascript pour initialiser le service <script type="text/javascript">
(tarteaucitron.job = tarteaucitron.job || []).push('slideshare');
</script>
</body>
</html>
2. Ajoutez cette partie à l'endroit ou le service doit s'afficher <div class="slideshare-canvas" data-id="slide_id" width="width" height="height"></div>
3. Retirez ce marqueur HTML du site<iframe src="//www.slideshare.net/slideshow/embed_code/slide_id" width="width" height="height" frameborder="0" marginwidth="0" marginheight="0" scrolling="no" style="border:1px solid #CCC; border-width:1px; margin-bottom:5px; max-width: 100%;" allowfullscreen></iframe>
Vidéo SoundCloud
Installer
SoundCloud
Fermer
1. Ajoutez ce code Javascript pour initialiser le service <script type="text/javascript">
(tarteaucitron.job = tarteaucitron.job || []).push('soundcloud');
</script>
</body>
</html>
2. Ajoutez cette partie à l'endroit ou le service doit s'afficher <div class="soundcloud_player" data-playable-id="track_or_playlist_id" data-playable-type="type (playlists|sets)" data-height="iframe_height" data-color="accent_color" data-auto-play="autoplay (true|false)" data-hide-related="hide related (true|false)" data-show-comments="show comment (true|false)" data-show-user="show user (true|false)" data-show-reposts="show repost (true|false)" data-show-teaser="show teaser (true|false)" data-visual="visual (true|false)" data-artwork="artwork (true|false)"></div>
3. Retirez ce marqueur HTML du site<iframe width="100%" scrolling="no" frameborder="no" autoplay (true|false) src="https://w.soundcloud.com/player/?url=https%3A//api.soundcloud.com/type (playlists|sets)/track_or_playlist_id&hide_related=hide related (true|false)&color=accent_color&auto_play=autoplay (true|false)&show_comments=show comment (true|false)&hide_related=hide related (true|false)&show_user=show user (true|false)&show_reposts=show repost (true|false)&show_teaser=show teaser (true|false)&visual=visual (true|false)&artwork=artwork (true|false)"></iframe>
Vidéo Spotify
Installer
Spotify
Fermer
1. Ajoutez ce code Javascript pour initialiser le service <script type="text/javascript">
(tarteaucitron.job = tarteaucitron.job || []).push('spotify');
</script>
</body>
</html>
2. Ajoutez cette partie à l'endroit ou le service doit s'afficher <div class="spotify_player" spotifyID="spotifyID" width="width" height="height"></div>
3. Retirez ce marqueur HTML du site<iframe src="//open.spotify.com/embed/spotifyID" width="width" height="height" frameborder="0" allowfullscreen></iframe>
Vidéo Tiktok Video
Installer
Tiktok Video
Fermer
1. Ajoutez ce code Javascript pour initialiser le service <script type="text/javascript">
(tarteaucitron.job = tarteaucitron.job || []).push('tiktokvideo');
</script>
</body>
</html>
2. Ajoutez cette partie à l'endroit ou le service doit s'afficher <blockquote class="tiktok-embed" data-video-id="videoId" style="max-width: 605px;min-width: 325px;" ><section></section></blockquote>
3. Retirez ce marqueur HTML du site<script async src="https://www.tiktok.com/embed.js"></script>
Vidéo Twitch
Installer
Twitch
Fermer
1. Ajoutez ce code Javascript pour initialiser le service <script type="text/javascript">
(tarteaucitron.job = tarteaucitron.job || []).push('twitch');
</script>
</body>
</html>
2. Ajoutez cette partie à l'endroit ou le service doit s'afficher <div class="twitch_player" videoID="video_id" width="width" height="height" parent="parent"></div>
3. Retirez ce marqueur HTML du site<iframe width="width" height="height" src="https://player.twitch.tv/?video=video_id&parent=parent" frameborder="0" allowfullscreen></iframe>
Vidéo Videas
Installer
Videas
Fermer
1. Ajoutez ce code Javascript pour initialiser le service <script type="text/javascript">
(tarteaucitron.job = tarteaucitron.job || []).push('videas');
</script>
</body>
</html>
2. Ajoutez cette partie à l'endroit ou le service doit s'afficher <div class="tac_videas" data-id="id" width="width" height="height"></div>
3. Retirez ce marqueur HTML du site<iframe width="100%" height="100%" src="https://app.videas.fr/embed/id/" frameborder="0" allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" allowfullscreen="true"></iframe>
Vidéo Vimeo
Installer
Vimeo
Fermer
1. Ajoutez ce code Javascript pour initialiser le service <script type="text/javascript">
(tarteaucitron.job = tarteaucitron.job || []).push('vimeo');
</script>
</body>
</html>
2. Ajoutez cette partie à l'endroit ou le service doit s'afficher <div class="vimeo_player" videoID="video_id" width="width" height="height"></div>
3. Retirez ce marqueur HTML du site<iframe width="width" height="height" src="//player.vimeo.com/video/video_id" frameborder="0" allowfullscreen></iframe>
Vidéo WebTV Normandie Université
Installer
WebTV Normandie Université
Fermer
1. Ajoutez ce code Javascript pour initialiser le service <script type="text/javascript">
(tarteaucitron.job = tarteaucitron.job || []).push('webtvnu');
</script>
</body>
</html>
2. Ajoutez cette partie à l'endroit ou le service doit s'afficher <div class="webtvnu_player" videoID="videoID"></div>
3. Retirez ce marqueur HTML du site<iframe src="https://webtv.normandie-univ.fr/permalink/videoID/iframe/" frameborder="0" allowfullscreen></iframe>
Vidéo Youtube
Installer
Youtube
Fermer
1. Ajoutez ce code Javascript pour initialiser le service <script type="text/javascript">
(tarteaucitron.job = tarteaucitron.job || []).push('youtube');
</script>
</body>
</html>
2. Ajoutez cette partie à l'endroit ou le service doit s'afficher <div class="youtube_player" videoID="video_id" width="width" height="height" theme="theme (dark | light)" rel="rel (1 | 0)" controls="controls (1 | 0)" showinfo="showinfo (1 | 0)" autoplay="autoplay (0 | 1)" mute="mute (0 | 1)" srcdoc="srcdoc" loop="loop (0 | 1)" loading="loading (0 | 1)" data-start="start" data-end="end"></div>
3. Retirez ce marqueur HTML du site<iframe width="width" height="height" src="//www.youtube.com/embed/video_id" frameborder="0" allowfullscreen></iframe>
Vidéo Youtube (Js API)
Installer
Youtube (Js API)
Fermer
1. Ajoutez ce code Javascript pour initialiser le service <script type="text/javascript">
(tarteaucitron.job = tarteaucitron.job || []).push('youtubeapi');
</script>
</body>
</html>
2. Retirez ce marqueur HTML du site<script>(function(){
var s = document.createElement("script");
s.src = "https://www.youtube.com/player_api";
var before = document.getElementsByTagName("script")[0];
before.parentNode.insertBefore(s, before);
})();</script>