This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* | |
| * ============================================================= | |
| * TECHNICAL SEO AUDITING SUITE v1.0 (Foundation) | |
| * ============================================================= | |
| * | |
| * Questo script implementa le fondamenta della suite di auditing, | |
| * basate sull'audit e sul codice originale. | |
| * | |
| * Include: | |
| * - Architettura modulare (Classe TechnicalSeoSuite) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| (function() { | |
| 'use strict'; | |
| try { | |
| if (location.protocol.indexOf('chrome') === 0 | | |
| | location.host === 'chrome.google.com') { | |
| alert('I bookmarklet non possono girare qui. Provalo su un sito web normale.'); | |
| return; | |
| } |