Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6950847
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T14:08:37+00:00 2026-05-27T14:08:37+00:00

Could you advise me with writing a greasemonkey script displaying only anchors () in

  • 0

Could you advise me with writing a greasemonkey script displaying only anchors () in a web page and deleting everything else?

thank you

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-27T14:08:38+00:00Added an answer on May 27, 2026 at 2:08 pm

    This code will wipe out everything but a list of the href’s from links (added line breaks for clarity):

    var links = document.querySelectorAll ("a");
    
    //--- Build up new body, that will just display hrefs.
    var newPageStr  = "";
    for (var J=0, L=links.length;  J < L;  ++J) {
    
        //--- Skip links with empty href's.
        var href    = links[J].href;
        if ( /\w/.test (href) ) {
            newPageStr += '<a href="' + href + '">' + href + '</a><br>';
        }
    }
    
    //--- Replace everything on the page with the link list.
    document.close ();
    document.open ();
    document.write (newPageStr);
    document.close ();
    

    Update:

    Since document.write() seems to flake in the GM environment, here’s a DOM-based alternative:

    var links = document.querySelectorAll ("a");
    
    //--- Build up new body, that will just display hrefs.
    var newPageStr  = "";
    for (var J=0, L=links.length;  J < L;  ++J) {
    
        //--- Skip links with empty href's.
        var href    = links[J].href;
        if ( /\w/.test (href) ) {
            newPageStr += '<a href="' + href + '">' + href + '</a><br>';
        }
    }
    
    //--- Erase everything from the page's body:
    var b           = document.body;
    var p           = b.parentNode;
    p.removeChild (b);
    
    //--- Add our new link list.
    var newB        = document.createElement ("BODY");
    newB.innerHTML  = newPageStr;
    p.appendChild (newB);
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am writing a web application that has a page that returns a list
I was wondering if anyone could advise on a good pattern for loading textures
Could someone please advise the current best practice around Date and Calendar types. When
I'm writing an app where support for promotions is required, and these promotions could
I have been writing a small java application (my first!), that does only a
I writing real estate web site with basic function for choosing and ordering realty.
I'm writing a desktop app that could be used to manage a dance academy.
I'm writing a reasonably complex web application. The Python backend runs an algorithm whose
Could someone advice me on what approach to take when writing C# constructors? In
I am writing an application that initially will be developed as web (probably Silverlight)

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.