UNPKG

coach-core

Version:
27 lines (23 loc) 822 B
(function () { 'use strict'; const offending = []; let score = 100; if (globalThis.YT) { score = 0; } return { id: 'youtube', title: 'Avoid including Youtube videos', description: 'If you include Youtube videos on your page, you are sharing private user information with Google.', advice: score === 0 ? 'The page is including code from Youtube. You share user private information with Google. Instead you can host a video screenshot and let the user choose to go to Youtube or not, by clicking on the screenshot. You can look at http://labnol.org/?p=27941 and make sure you host your screenshot yourself. Or choose another video service.' : '', score: score, weight: 6, severity: 'info', offending: offending, tags: ['privacy'] }; })();