https://www.textise.net/

ID de l'analyse :
979191da-612e-4a83-8262-b7ca9cb454abTerminée
URL soumise :
https://www.textise.net/
Fin du rapport :

Liens : 6 trouvé(s)

Lientexte
https://textise.wordpress.com/privacy-policy/learn more about cookiesPrivacy Policy
https://textise.wordpress.com/about-textise/Find out more here...
https://textise.wordpress.com/for-web-developers/Dev Resources
https://textise.wordpress.com/contact-us/Contact us
https://www.facebook.com/SubjunctiveSoftwareFollow us on Facebook
https://twitter.com/SubjunctiveSoftTwitter @textise

Variables JavaScript : 62 trouvée(s)

NomType
0object
1object
onbeforetoggleobject
documentPictureInPictureobject
onscrollendobject
cookieconsentobject
selobject
introOnnumber
myVerstring
textisePagefunction

Messages de journal de console : 1 trouvé(s)

TypeCatégorieEnregistrement
logjavascript
URL
https://www.paypalobjects.com/donate/sdk/donate-sdk.js
texte
DonateButtonManager props JSHandle@object

HTML

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml..."><html lang="en"><head>
    <title>Textise - Text-Only and Accessibility Tools</title>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    <meta name="Keywords" content="accessibility,seo,low vision,text,internet tools,web tool,internet tool,text-only,text only">
    <meta name="Description" content="Textise is an Internet tool that can create a text only version of almost any web page. Great for web research, accessibility, SEO and printing.">
    <meta name="google-site-verification" content="eTEAWYo-BkxxoAW8-sHSaVpcfI4EgRqv7WllAx025m4">
    <meta name="viewport" content="width=device-width, initial-scale=1">
    <link rel="shortcut icon" href="/favicon.ico" type="image/x-icon">
    <link rel="icon" href="/favicon.ico" type="image/x-icon">
    <link rel="StyleSheet" href="styles/textise2.css?v=1.1" type="text/css">
    <link href="https://fonts.googleapis.com/css?family=Lato|Open+Sans" rel="stylesheet">

    <script src="https://pagead2.googlesyndication.com/pagead/managed/js/adsense/m202411140101/show_ads_impl_with_ama_fy2021.js?client=ca-pub-4504115935840480&amp;plah=www.textise.net"></script><script async="" src="//www.google-analytics.com/analytics.js"></script><script async="" src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-pub-4504115935840480" crossorigin="anonymous" data-checked-head="true"></script>

    <link rel="stylesheet" type="text/css" href="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.css">
    <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script>
    <script>
        window.addEventListener("load", function () {
            window.cookieconsent.initialise({
                "palette": {
                    "popup": {
                        "background": "#66c0ec"
                    },
                    "button": {
                        "background": "#fff",
                        "text": "#237afc"
                    }
                },
                "position": "bottom-left",
                "content": {
                    "message": "This web site uses cookies to ensure you get the best experience.",
                    "dismiss": "OK",
                    "link": "Privacy Policy",
                    "href": "https://textise.wordpress.com/privacy-policy/"
                }
            })
        });
    </script>

    <style type="text/css">
        a:link {
            color: #0000ff;
            text-decoration: underline;
        }

        a:active {
            color: #0000ff;
            text-decoration: underline;
        }

        a:visited {
            color: #0000ff;
            text-decoration: underline;
        }

        a:hover {
            color: #0000ff;
            text-decoration: underline;
            outline: 2px solid;
            outline-color: #7aacfe;
        }

        input:hover {
            outline: 2px solid;
            outline-color: #7aacfe;
        }

        body {
            font-size: 14px;
            font-family: 'Open Sans', sans-serif;
            color: black;
        }

        #intro {
            width: 50%;
            display: none;
        }

        .logo {
            font-family: 'Lato', sans-serif;
            font-size: 112px;
            color: #66c0ec;
        }

        @media print {
            .no-print {
                display: none
            }
        }
    </style>

    <script type="text/javascript" language="javascript">
        var sel;
        var introOn = 0;
        var myVer = ""; //" (TEST VERSION!!!)";
        function textisePage(action) {

            //Now in BitBucket 05/10/2016

            //Options for which version of showText.aspx to call:
            //  test             localhost
            //  live             current live version using domain name
            //  temphostinguk    temporary hostinguk version
            const mode = "live";

            var s = document.getElementById("in").value;
            sel = document.getElementById("Select1");
            var srchEngine;

            s = trim(s, " ");
            if (s.indexOf(".") == -1) {
                action = 1;
            }

            if (action == 1) {
                srchEngine = sel.value;
                createCookie("textiseSearch", srchEngine, 365);
                s = srchEngine + s;
            }
            else {
                document.all.strURL.value = s;
            }
            onkeypress = false;

            //Call which version of showText.aspx?
            switch (mode) {
                case "test":
                    location.href = "http://localhost:55896/showText.aspx?strURL=" + escape(escape(s));

                    break;
                case "live":
                    location.href = "https://www.textise.net/showText.aspx?strURL=" + escape(escape(s));
                    break;

                case "temphostinguk":
                    location.href = "http://textise.net.hostinguk.co.uk/showText.aspx?strURL=" + escape(escape(s));
                    break;
            }
        }

        function trim(str, chars) {
            return ltrim(rtrim(str, chars), chars);
        }

        function ltrim(str, chars) {
            chars = chars || "\\s";
            return str.replace(new RegExp("^[" + chars + "]+", "g"), "");
        }

        function rtrim(str, chars) {
            chars = chars || "\\s";
            return str.replace(new RegExp("[" + chars + "]+$", "g"), "");
        }

        //function for forcing form submission
        function checkEnter(e) {
            var characterCode
            if (e && e.which) {
                e = e
                characterCode = e.which
            }
            else {
                e = event
                characterCode = e.keyCode
            }
            if (characterCode == 13) {
                textisePage(0);
                return false;
            }
            else {
                return false;
            }
        }

        var x = 2;

        function selectIt(obj) {
            if (x % 2 == 0) {
                obj.select();
            }
            else {
                if (document.selection) {
                    document.selection.empty();
                    obj.blur();
                }
                else {
                    window.getSelection().removeAllRanges();
                }
            }
            obj.focus();
            x++;
        }

        function createCookie(name, value, days) {
            if (days) {
                var date = new Date();
                date.setTime(date.getTime() + (days * 24 * 60 * 60 * 1000));
                var expires = "; expires=" + date.toGMTString();
            }
            else var expires = "";
            document.cookie = name + "=" + value + expires + "; path=/";
        }

        function readCookie(name) {
            var nameEQ = name + "=";
            var ca = document.cookie.split(';');
            for (var i = 0; i < ca.length; i++) {
                var c = ca[i];
                while (c.charAt(0) == ' ') c = c.substring(1, c.length);
                if (c.indexOf(nameEQ) == 0) return c.substring(nameEQ.length, c.length);
            }
            return null;
        }

        function eraseCookie(name) {
            createCookie(name, "", -1);
        }

    </script>
    <style type="text/css">
        #Select1 {
            width: 243px;
        }

        .style1 {
            color: #FF0000;
        }

        .style2 {
            width: 300px;
            height: 50px;
            border-width: 0px;
        }
    </style>

    <!-- Google tag (gtag.js) -->
    <script async="" src="https://www.googletagmanager.com/gtag/js?id=G-18PVS1QD58"></script>
    <script>
        window.dataLayer = window.dataLayer || [];
        function gtag() { dataLayer.push(arguments); }
        gtag('js', new Date());

        gtag('config', 'G-18PVS1QD58');
    </script>

    <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-7987425-1', 'auto');
        ga('send', 'pageview');

    </script>

<meta http-equiv="origin-trial" content="AlK2UR5SkAlj8jjdEc9p3F3xuFYlF6LYjAML3EOqw1g26eCwWPjdmecULvBH5MVPoqKYrOfPhYVL71xAXI1IBQoAAAB8eyJvcmlnaW4iOiJodHRwczovL2RvdWJsZWNsaWNrLm5ldDo0NDMiLCJmZWF0dXJlIjoiV2ViVmlld1hSZXF1ZXN0ZWRXaXRoRGVwcmVjYXRpb24iLCJleHBpcnkiOjE3NTgwNjcxOTksImlzU3ViZG9tYWluIjp0cnVlfQ=="><meta http-equiv="origin-trial" content="Amm8/NmvvQfhwCib6I7ZsmUxiSCfOxWxHayJwyU1r3gRIItzr7bNQid6O8ZYaE1GSQTa69WwhPC9flq/oYkRBwsAAACCeyJvcmlnaW4iOiJodHRwczovL2dvb2dsZXN5bmRpY2F0aW9uLmNvbTo0NDMiLCJmZWF0dXJlIjoiV2ViVmlld1hSZXF1ZXN0ZWRXaXRoRGVwcmVjYXRpb24iLCJleHBpcnkiOjE3NTgwNjcxOTksImlzU3ViZG9tYWluIjp0cnVlfQ=="><meta http-equiv="origin-trial" content="A9wSqI5i0iwGdf6L1CERNdmsTPgVu44ewj8QxTBYgsv1LCPUVF7YmWOvTappqB1139jAymxUW/RO8zmMqo4zlAAAAACNeyJvcmlnaW4iOiJodHRwczovL2RvdWJsZWNsaWNrLm5ldDo0NDMiLCJmZWF0dXJlIjoiRmxlZGdlQmlkZGluZ0FuZEF1Y3Rpb25TZXJ2ZXIiLCJleHBpcnkiOjE3MzY4MTI4MDAsImlzU3ViZG9tYWluIjp0cnVlLCJpc1RoaXJkUGFydHkiOnRydWV9"><meta http-equiv="origin-trial" content="A+d7vJfYtay4OUbdtRPZA3y7bKQLsxaMEPmxgfhBGqKXNrdkCQeJlUwqa6EBbSfjwFtJWTrWIioXeMW+y8bWAgQAAACTeyJvcmlnaW4iOiJodHRwczovL2dvb2dsZXN5bmRpY2F0aW9uLmNvbTo0NDMiLCJmZWF0dXJlIjoiRmxlZGdlQmlkZGluZ0FuZEF1Y3Rpb25TZXJ2ZXIiLCJleHBpcnkiOjE3MzY4MTI4MDAsImlzU3ViZG9tYWluIjp0cnVlLCJpc1RoaXJkUGFydHkiOnRydWV9"><style></style></head>
<body onload="loadMe()"><div role="dialog" aria-live="polite" aria-label="cookieconsent" aria-describedby="cookieconsent:desc" class="cc-window cc-floating cc-type-info cc-theme-block cc-bottom cc-left cc-color-override--690327613 " style=""><!--googleoff: all--><span id="cookieconsent:desc" class="cc-message">This web site uses cookies to ensure you get the best experience. <a aria-label="learn more about cookies" role="button" tabindex="0" class="cc-link" href="https://textise.wordpress.com/privacy-policy/" rel="noopener noreferrer nofollow" target="_blank">Privacy Policy</a></span><div class="cc-compliance"><a aria-label="dismiss cookie message" role="button" tabindex="0" class="cc-btn cc-dismiss">OK</a></div><!--googleon: all--></div>

    <center>

        <div class="logo">Text<span style="font-style: italic">ise</span></div>

        <div id="intro">
            <div style="text-align: center;font-weight: bold">What is Textise?</div>
            Textise is a new way of looking at the Web. It’s an internet tool that removes everything from a web page except for its text.
            In practice, this means that images, forms, scripts, adverts, they all go, leaving plain text. <a href="https://textise.wordpress.com/about-textise/" target="_blank">Find out more here...</a><br>
            <br>
            <div style="text-align: center;font-weight: bold">How to use this page</div>
            1) Type or paste the URL of a web page into the box below and click "Textise". A text only version of the web page will be displayed.<br>
            2) Type a search term into the box, select a search engine from the drop-down list, and click "Search". You will be taken to a text only version of the search results.<br>
            Textise will also display search forms on selected sites (for example bbc.co.uk, amazon.com) if enabled on the <a href="textiseOptions.aspx">Options page</a>.
        </div>

        <div><br><a id="show" href="javascript:introVisible()">Show introduction</a></div>

        <br>
        URL or search term:&nbsp;<input type="text" onclick="selectIt(this)" name="in" id="in" style="width: 480px;" onkeypress="checkEnter(event)" title="Enter the address of a web page or a search term and click the appropriate button below. The results will be displayed as text only."><br>
        <br>
        <input type="button" value="Textise" style="width: 100px;" title="Type a URL in the box (or paste it in) and click to see a text-only version of the page." onclick="textisePage(0)">
        <input id="Button1" style="width: 100px;" title="Type a search term in the box and click to view a text-only version of your search results.
(Note: Does not work in the EU or UK due to GDPR rules.)" onclick="textisePage(1)" type="button" value="Search"><br>
        <br>
        For searches, use this search engine:&nbsp;<select id="Select1" name="Select1" title="Choose a search provider." style="width: 200px;">
            <option value="https://www.bing.com/search?q=">Bing</option>
            <option value="https://www.google.com/search?q=">Google</option>
            <option value="https://search.yahoo.com/search?p=">Yahoo</option>
        </select>
        <input type="hidden" id="strURL" name="strURL">

        <br>
        <br>
        <a href="https://textise.wordpress.com/for-web-developers/" target="_blank" title="Find out how Textise can help developers and web masters">Dev Resources</a>
        &nbsp;
        <a href="http://www.textise.net/textiseOptions.aspx" title="Set preferences for font size, font colour, etc.">Options</a>&nbsp;&nbsp;<a href="https://www.textise.net/Bookmarklet.aspx" title="Easily flip in and out of text-only with our bookmarklet">Cross-Browser Bookmarklet</a>

        <br>

        <a href="https://textise.wordpress.com/contact-us/" target="_blank" title="Contact us (opens a new window)">Contact us</a>&nbsp;&nbsp;
        <a href="https://www.facebook.com/SubjunctiveSoftware" target="_blank" title="Follow us on Facebook">Follow us on Facebook</a>&nbsp;or on <a href="https://twitter.com/SubjunctiveSoft" target="_blank" title="Twitter link">Twitter @textise</a>

        <br>
        <br>
        <br>

        <div>
            © Subjunctive Software
        </div>

        <br>

        <div id="donate-button-container">
            <div id="donate-button"><img src="https://www.paypalobjects.com/en_US/GB/i/btn/btn_donateCC_LG.gif" id="donate-button" style="cursor: pointer;" title="PayPal - The safer, easier way to pay online!" alt="Donate with PayPal button"></div>
            <script src="https://www.paypalobjects.com/donate/sdk/donate-sdk.js" charset="UTF-8" data-uid-auto="112f8e1010_mty6nta6mdi"></script>
            <script>
                PayPal.Donation.Button({
                    env: 'production',
                    hosted_button_id: 'BSVT9M2PF5V52',
                    image: {
                        src: 'https://www.paypalobjects.com/en_US/GB/i/btn/btn_donateCC_LG.gif',
                        alt: 'Donate with PayPal button',
                        title: 'PayPal - The safer, easier way to pay online!',
                    }
                }).render('#donate-button');
            </script>
        </div>

        <div>&nbsp;</div>

        <div>&nbsp;</div>

        <script language="javascript" type="text/javascript">
            function loadMe() {
                sel = document.getElementById("Select1");
                var srch = readCookie("textiseSearch");
                if (srch == null) {
                    srch = "https://www.google.com/search?q="
                }
                if (srch == "") {
                    srch = "https://www.google.com/search?q="
                }
                sel.value = srch;
            }
            function introVisible() {
                introOn = 1 - introOn;
                if (introOn == 0) {
                    //alert(myVer);
                    sel = document.getElementById("intro");
                    sel2 = document.getElementById("show");
                    sel.style.display = "none";
                    sel2.innerHTML = "Show introduction" + myVer;
                }
                else {
                    sel = document.getElementById("intro");
                    sel2 = document.getElementById("show");
                    sel.style.display = "block";
                    sel2.innerHTML = "Hide introduction" + myVer;
                }
            }
        </script>

    </center>

    <!--
    <script src="https://www.textise.net/TextisePro/scripts/textisePro.js?v=2" async type='text/javascript'></script>
        -->



<ins class="adsbygoogle adsbygoogle-noablate" data-adsbygoogle-status="done" style="display: none !important;"><div id="aswift_0_host" style="border: none; height: 0px; width: 0px; margin: 0px; padding: 0px; position: relative; visibility: visible; background-color: transparent; display: inline-block;"><iframe id="aswift_0" name="aswift_0" style="left:0;position:absolute;top:0;border:0;width:undefinedpx;height:undefinedpx;" sandbox="allow-forms allow-popups allow-popups-to-escape-sandbox allow-same-origin allow-scripts allow-top-navigation-by-user-activation" frameborder="0" marginwidth="0" marginheight="0" vspace="0" hspace="0" allowtransparency="true" scrolling="no" src="https://pagead2.googlesyndication.com/pagead/ads?client=ca-pub-4504115935840480&amp;output=html&amp;adk=1812271804&amp;adf=3025194257&amp;abgtt=6&amp;lmt=1731943788&amp;plat=1%3A8200%2C2%3A8200%2C3%3A2162688%2C4%3A2162688%2C9%3A134250504%2C16%3A8388608%2C17%3A32%2C24%3A32%2C25%3A32%2C30%3A1048576%2C32%3A32%2C41%3A32%2C42%3A32&amp;format=0x0&amp;url=https%3A%2F%2Fwww.textise.net%2F&amp;pra=5&amp;wgl=1&amp;aihb=0&amp;aiof=4&amp;asro=0&amp;ailel=1~2~4~6~7~8~9~10~11~12~13~14~15~16~17~18~19~20~21~24~29~30~34&amp;aiael=1~2~3~4~6~7~8~9~10~11~12~13~14~15~16~17~18~19~20~21~24~29~30~34&amp;aicel=33~38&amp;aifxl=29_18~30_19&amp;aiixl=29_5~30_6&amp;aiict=1&amp;itsi=-1&amp;aiapm=0.3221&amp;aiapmi=0.33938&amp;aiombap=1&amp;aief=1&amp;uach=WyIiLCIiLCIiLCIiLCIiLG51bGwsMCxudWxsLCIiLG51bGwsMF0.&amp;dt=1732726202429&amp;bpp=35&amp;bdt=553&amp;idt=532&amp;shv=r20241120&amp;mjsv=m202411140101&amp;ptt=9&amp;saldr=aa&amp;abxe=1&amp;eoidce=1&amp;nras=1&amp;correlator=8609127811396&amp;frm=20&amp;pv=2&amp;u_tz=0&amp;u_his=2&amp;u_h=1&amp;u_w=1&amp;u_ah=1&amp;u_aw=1&amp;u_cd=24&amp;u_sd=1&amp;dmc=2&amp;adx=-12245933&amp;ady=-12245933&amp;biw=800&amp;bih=600&amp;scr_x=0&amp;scr_y=0&amp;eid=31088729%2C95345966%2C95347755&amp;oid=2&amp;pvsid=877116413595841&amp;tmod=2014851435&amp;uas=0&amp;nvt=1&amp;fsapi=1&amp;fc=1920&amp;brdim=0%2C0%2C0%2C0%2C1%2C0%2C0%2C0%2C800%2C600&amp;vis=1&amp;rsz=%7C%7Cs%7C&amp;abl=NS&amp;fu=32768&amp;bc=31&amp;bz=0&amp;ifi=1&amp;uci=a!1&amp;fsb=1&amp;dtd=646" data-google-container-id="a!1" tabindex="0" title="Advertisement" aria-label="Advertisement" data-load-complete="true"></iframe></div></ins><iframe src="https://ep2.adtrafficquality.google/sodar/sodar2/232/runner.html" width="0" height="0" style="display: none;"></iframe></body><iframe id="google_esf" name="google_esf" src="https://pagead2.googlesyndication.com/pagead/html/r20241120/r20190131/zrt_lookup_fy2021.html" style="display: none;"></iframe></html>