Hirdetés

Új hozzászólás Aktív témák

  • WonderCSabo

    félisten

    Sziasztok!

    Hogyan tudom megadni az alapértelmezett böngésző pontos útvonalát? (A Firefox-hoz kell egy két kapcsoló)

    Jamby18: Ezt a userscriptet rakd fel. Chrome topikban megmondják hogy kell:

    // ==UserScript==
    // @name Logout_center
    // @namespace http://pazsitz.extra.hu/scripts/
    // @description Logout "align center" v.1.3
    // @version 1.3
    // @include http://logout.hu/*
    // @exclude http://logout.hu/muvelet/*
    // @exclude http://logout.hu/tag/*
    // ==/UserScript==

    function addGlobalStyle(css) {
    var head, style;
    var allDivs, thisDiv;
    head = document.getElementsByTagName('head')[0];
    if (!head) { return; }
    style = document.createElement('style');
    style.type = 'text/css';
    style.innerHTML = css;
    head.appendChild(style);
    }

    firstDivs = document.evaluate("//div[@class='forum temak atemak']",document,null,XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE,null);
    secondDivs = document.evaluate("//div[@class='forum forumok']",document,null,XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE,null);
    thirdDivs = document.evaluate("//div[@class='uzik']",document,null,XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE,null);
    if (firstDivs.snapshotLength>0 || secondDivs.snapshotLength>0 || thirdDivs.snapshotLength>0) {
    addGlobalStyle("body {background-color:#CDC5AF;color:#000000;font-family:Verdana,Arial,Helvetica,sans-serif;margin:0;padding:0;}");
    addGlobalStyle("#page { background-color:#CDC5AF; margin:0 auto; position:relative; text-align:left; width:984px;}");
    addGlobalStyle("#fo {background:transparent url(/design/bcg.gif) repeat-y scroll 0 0; margin:6px 0 0; padding:0 0 1px; width:958px;}");
    }
    else
    {
    addGlobalStyle("body {background-color:#CDC5AF;color:#000000;font-family:Verdana,Arial,Helvetica,sans-serif;margin:0;padding:0;}");
    addGlobalStyle("#page { background-color:#CDC5AF; margin:0 auto; position:relative; text-align:left; width:984px;}");
    }

    [ Szerkesztve ]

Új hozzászólás Aktív témák