सदस्य:Rahuldeshmukh101/vector.js

विकिपीडिया, मुक्‍त ज्ञानकोशातून

नोंद: साठवून ठेवल्यानंतर बदल पहाण्यासाठी कदाचित तुमच्या ब्राऊजरच्या कॅचेला बायपास करावे लागेल.

  • फ़ायरफ़ॉक्स / सफ़ारी: धरुन ठेवा Shift टिचकी मारताना Reload, किंवा हे दाबताना Ctrl-F5 किंवा Ctrl-R (⌘-R मॅकवर)
  • गुगल क्रोम: दाबा Ctrl-Shift-R (⌘-Shift-R मॅकसाठी)
  • ओपेरा: कडे जा Menu → Settings (ओपेरा → पसंतीक्रम on a Mac) आणि मग गोपनियता आणि सुरक्षा → ब्राउजिंग डाटा काढून टाका → कॅचे छायाचित्रे आणि धारिणी.
//image delere
/**** quick image delete ****/
importScript('User:Howcheng/quickimgdelete.js');
//mw.loader.load("//en.wikipedia.org/w/index.php?title=User:Howcheng/quickimgdelete.js&action=raw&ctype=text/javascript");
importScript('सदस्य:Rahuldeshmukh101/image-cert.js');

//टुल बार
// INSECURE SCRIPT LOAD importScript('User:Odie5533/SnipManager.user.js');

mw.loader.load("//en.wikipedia.org/w/index.php?title=User:Odie5533/SnipManager.user.js&action=raw&ctype=text/javascript");

// A small piece of JS writen by [[User:MatthewFenton]], This is my first piece of JS.
function welcome() {
    if (document.title.indexOf('Editing User talk:') == 0) {
        document.editform.wpTextbox1.value = document.editform.wpTextbox1.value + '==' + 'Welcome' + '==\n' + '{{subst:User:' + 'MatthewFenton/Welcome}}\n~~' + '~~';
        document.editform.wpSummary.value = 'Welcome a user to Wikipedia using JS WW';
    }
}
function welcome_tab() {
    add_link('javascript:welcome()', 'Welcome');
}
 
if (document.title.indexOf('Editing User talk:') == 0) {
 addOnloadHook(welcome_tab);
}



// [[wikipedia:User:Lupin/popups]]
mw.loader.load("//en.wikipedia.org/w/index.php?title=User:Lupin/popups.js&action=raw&ctype=text/javascript");

//editcounter
mw.loader.load("//en.wikipedia.org/w/index.php?title=User:Lupin/editcount.js&action=raw&ctype=text/javascript");

importScript('सदस्य:Rahuldeshmukh101/redhot.js');
// tree code

function AppendCategoryTreeToSidebar() {
    try {
        var node = document.getElementById( "p-tb" )
                           .getElementsByTagName('div')[0]
                           .getElementsByTagName('ul')[0];
 
        var aNode = document.createElement( 'a' );
        var liNode = document.createElement( 'li' );
 
        aNode.appendChild( document.createTextNode( 'CategoryTree' ) );
        aNode.setAttribute( 'href' ,  '[[mr.wikipedia.org/wiki/विशेष:वर्गवृक्ष]]');
        liNode.appendChild( aNode );
        liNode.className = 'plainlinks';
        node.appendChild( liNode );
    } catch(e) {
        // lets just ignore what's happened
        return;
    }
}
//tree code end