Google बार के लिंक कैसे बदलें? [बन्द है]


9

मैं Chrome का उपयोग कर रहा हूं, और मैं बार के लिंक को बदलना चाहता हूं, लेकिन मुझे नहीं पता कि कैसे। यह एक Greasemonkey स्क्रिप्ट हो सकता है, लेकिन मुझे नहीं पता कि इसे कैसे लिखना है।


क्या आप ओट बुकमार्क बार या Google नेवी बार पर बात कर रहे हैं जो किसी Google वेबसाइट पर जाते समय प्रदर्शित होता है?
रेबेका डेसोनविले

@ डेज हां। नए Google की काली पट्टी के बारे में।
गार्मेन 1778

Google ने कुछ साल पहले Google बार को रिटायर किया था।
एले

जवाबों:


5

पुनर्व्यवस्थित करें Google Apps मेनू बार userscript आप के लिए बहुत अच्छी तरह से काम करना चाहिए।

अपनी इच्छानुसार वस्तुओं को जोड़ना या स्थानांतरित करना काफी सरल लगता है। सभी स्क्रिप्ट वर्तमान सूची आइटम को हटा देती है और उन्हें नए लोगों के साथ बदल देती है।

इसलिए Google डॉक्स को उन लिंक्स की सूची में जोड़ने के लिए जिन्हें आप इसमें जोड़ेंगे:

newOrderedList.innerHTML += '<li class=gbt><a target="_blank" class="gbzt" href="https://docs.google.com"><span class="gbtb2"></span><span class="gbts">Documents</span></a></li>';

पूर्ण यूजरस्क्रिप्ट के रूप में इस प्रकार है:

// ==UserScript==
// @name          Rearrange Google Apps Menu Bar
// @namespace     http://divergentblue.com
// @version       0.1
// @description   Customizes the google black bar
// @include       *
// ==/UserScript==


function reformatList()
{
    // Remove the OL containing the nav links
    var divContainingOrderedList = document.getElementById('gbz');
    var orderedList = document.getElementById("gbz").getElementsByTagName("ol")[0];
    divContainingOrderedList.removeChild(orderedList);
    var newOrderedList = document.createElement("ol");
    newOrderedList.setAttribute("class", "gbtc");

    // Add Plus
    newOrderedList.innerHTML += '<li class=gbt><a target="_blank" class="gbzt" href="https://plus.google.com"><span class="gbtb2"></span><span class="gbts">+</span></a></li>';
    // Add Gmail
    newOrderedList.innerHTML += '<li class=gbt><a target="_blank" class="gbzt" href="https://mail.google.com"><span class="gbtb2"></span><span class="gbts">Gmail</span></a></li>';
    // Add Voice
    newOrderedList.innerHTML += '<li class=gbt><a target="_blank" class="gbzt" href="https://voice.google.com/"><span class="gbtb2"></span><span class="gbts">Voice</span></a></li>';
    // Add Calendar
    newOrderedList.innerHTML += '<li class=gbt><a target="_blank" class="gbzt" href="https://calendar.google.com/"><span class="gbtb2"></span><span class="gbts">Calendar</span></a></li>';
    // Add Contacts
    newOrderedList.innerHTML += '<li class=gbt><a target="_blank" class="gbzt" href="https://www.google.com/contacts"><span class="gbtb2"></span><span class="gbts">Contacts</span></a></li>';
    // Add Reader
    newOrderedList.innerHTML += '<li class=gbt><a target="_blank" class="gbzt" href="https://reader.google.com"><span class="gbtb2"></span><span class="gbts">Reader</span></a></li>';
    // Add News
    newOrderedList.innerHTML += '<li class=gbt><a target="_blank" class="gbzt" href="https://news.google.com"><span class="gbtb2"></span><span class="gbts">News</span></a></li>';
    // Add Finance
    newOrderedList.innerHTML += '<li class=gbt><a target="_blank" class="gbzt" href="https://finance.google.com"><span class="gbtb2"></span><span class="gbts">Finance</span></a></li>';

    // Add the OL to the DOM
    divContainingOrderedList.appendChild(newOrderedList);
}

reformatList();

यह बहुत बढ़िया था, लेकिन यह GMail पेज पर काम नहीं करता है। इसके अलावा, आप 'मोर' को कैसे नीचे रखेंगे?
उल्लेखनीय रूप से

3

मैंने क्रोम के लिए एक उपयोगकर्ता नाम बनाया है जो Google+ के ठीक बाद जीमेल और कैलेंडर लिंक को स्थानांतरित करने के लिए jQuery का उपयोग करता है। यह इस कोड का उपयोग मेरे सहकर्मी tghw द्वारा पृष्ठ पर jQuery जोड़ने के लिए करता है। अपडेट: यह संस्करण एक Google वॉइस लिंक भी जोड़ता है

// ==UserScript==
// @name           Reorder Google links
// @namespace      http://adambox.org
// @description    Put the gmail and calendar links right after g+ where they belong
// ==/UserScript==

if (window.location.host.toLowerCase() == "www.google.com" || window.location.host.toLowerCase() == "mail.google.com")
{
    // a function that loads jQuery and calls a callback function when jQuery has finished loading
    function addJQuery(callback) {
      var script = document.createElement("script");
      var sProtocol = window.location.protocol;
      script.setAttribute("src", sProtocol + "//ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js");
      script.addEventListener('load', function() {
        var script = document.createElement("script");
        script.textContent = "(" + callback.toString() + ")();";
        document.body.appendChild(script);
      }, false);
      document.body.appendChild(script);
    }

    // the guts of this userscript
    function main() {
        var calendar = $('li.gbt:contains("Calendar")');
        var gplus = $('li.gbt:contains("+Adam")');
        var gmail = $('li.gbt:contains("Gmail")');

        calendar.insertAfter(gplus);
        gmail.insertAfter(gplus);

        var gvoiceLi = document.createElement("li");
        gvoiceLi.className = "gbt";
        gvoiceLi.innerHTML = '<a target="_blank" class="gbzt" href="https://www.google.com/voice"><span class="gbtb2"></span><span class="gbts">Voice</span></a>';
        $(gvoiceLi).insertAfter(calendar);

        var gplay = $('li.gbt:contains("Play")');
        gplay.hide();
    }

    // load jQuery and execute the main function
    addJQuery(main);
}

1

आप इसे स्क्रिप्ट के बिना नहीं कर सकते।

मुझे ग्रीसीमोनी स्क्रिप्ट के लिए नहीं पता है लेकिन क्रोम उपयोगकर्ताओं के लिए क्रोम वेब स्टोर में एक जीटीओल्स + एक्सटेंशन है जो Google बार लिंक को फिर से व्यवस्थित करने का विकल्प है।


1

यहाँ Greasemonkey का उपयोग करते हुए, कुछ संकेत दिए गए हैं। मैं पटकथा वास्तव में तेजी से लिखता हूं, यह बेहतर हो सकता है लेकिन शायद इससे मदद मिलती है। एक उदाहरण है कि Google More के बाद एक कस्टम लिंक कैसे जोड़ा जाए और एक लिंक को कैसे हटाया जाए, इसका एक उदाहरण है।

यदि आपके कोई प्रश्न हैं, तो कृपया टिप्पणी करें और मैं अधिक कोड जोड़ने का प्रयास करूंगा।

function addEntry()
{
    // If you want to add a link (for example to Google Books)
    if(document.getElementById("gbzc"))
    {
        newItem = document.createElement("li");
        newItem.setAttribute("class", "gbt");
        newItem.innerHTML = '<a target="_blank" class="gbzt" href="http://books.google.com/"><span class="gbtb2"></span><span class="gbts">Books</span></a>';

        topMenu = document.getElementById("gbzc")

        // Get the total menu entries
        var totalEntries = topMenu.getElementsByTagName("li").length;

        // Insert a link to the one before the last
        topMenu.insertBefore(newItem, topMenu.getElementsByTagName("li")[totalEntries]);
    }

    // If you want to remove a link (for example the first link to your Google+ profile)
    if(document.getElementById("gbzc"))
    {
        topMenu = document.getElementById("gbzc")

        // Get the first menu entry
        var child = topMenu.getElementsByTagName("li")[0];

        // Remove it
        topMenu.removeChild(child);
    }
}

setTimeout(addEntry, 0);
हमारी साइट का प्रयोग करके, आप स्वीकार करते हैं कि आपने हमारी Cookie Policy और निजता नीति को पढ़ और समझा लिया है।
Licensed under cc by-sa 3.0 with attribution required.