Webnode

Detect if site is build on Webnode

// ==UserScript==
// @name         Webnode
// @namespace    https://loutaci.cz/
// @version      0.1
// @description  Detect if site is build on Webnode
// @author       sirluky
// @match        *://*/*
// @grant        none
// ==/UserScript==

(function() {
    'use strict';
     if(document.querySelector('[name="generator"]').getAttribute('content').match(/webnode/ig)){alert('Je to webnode !!!')}
})();