MarvellousSuspender icon indicating copy to clipboard operation
MarvellousSuspender copied to clipboard

They did it again

Open devonjones opened this issue 2 years ago • 8 comments

Great suspender got taken down for malware again. the recovery tool from marvellous suspender only recovered a fraction of my tabs.

It would be great if marvellous suspender could let you see all the prior sessions from the great suspender and let you pick from those like you can with the session tool

devonjones avatar Jun 21 '23 16:06 devonjones

  • Extension version: v7.1.6.2 (7.0.201 for GS)
  • Browser name & version: Chrome 114.0.5735.134 (Official Build) (64-bit)
  • Operating system & version: Windows 11 (22H2)

devonjones avatar Jun 21 '23 16:06 devonjones

@devonjones post the ID of the extension that was removed.

Technetium1 avatar Jun 27 '23 15:06 Technetium1

@devonjones post the ID of the extension that was removed.

Hi I have the same issue the extension ID is: jaekigmcljkkalnicnjoafgfjoefkpeg

RiyadhAlshaye avatar Jul 01 '23 14:07 RiyadhAlshaye

But what happened to your previous tabs? I guess they got closed, yeah? In that case, I think there's nothing this plugin can do, this plugin can only redirect still open tabs.

There's a bit of discussion here, I guess only way to recover your lost session is to find a way to re-enable a malware-flagged extension - seems to be impossible nowadays - or to do some forensics on the old extension LDB - see the Reddit comments.

axelcostaspena avatar Jul 03 '23 12:07 axelcostaspena

If they got closed, but you have the same session, add in the ID jaekigmcljkkalnicnjoafgfjoefkpeg to the bottom of the Session Management in Settings, and they might be recoverable.

Technetium1 avatar Jul 03 '23 15:07 Technetium1

Great suspender got taken down for malware again. the recovery tool from marvellous suspender only recovered a fraction of my tabs.

It would be great if marvellous suspender could let you see all the prior sessions from the great suspender and let you pick from those like you can with the session tool

seems somebody already took the time to do it: https://github.com/greatsuspender/thegreatsuspender/issues/1367

elgatov avatar Aug 12 '23 12:08 elgatov

Great suspender got taken down for malware again. the recovery tool from marvellous suspender only recovered a fraction of my tabs. It would be great if marvellous suspender could let you see all the prior sessions from the great suspender and let you pick from those like you can with the session tool

seems somebody already took the time to do it: greatsuspender#1367

Again, if the tabs are still open and broken, that can be helpful, but also the built in feature in The Marvelous Suspender can do the same job. For those whom got the tabs closed, that doesn't apply.

axelcostaspena avatar Aug 12 '23 13:08 axelcostaspena

This worked for me 2 years ago for restoring tabs from the chrome history

After searching in history (chrome://history/?q=klbibkeccnjlkjkiokjodocebajanakg) you can run this code (press F12, select Console, paste, press Enter), and it should remove the chrome-extension:// stuff from the links and turn them into regular links

replaceURLs = function(){
    let items = document.querySelector('#history-app').shadowRoot.querySelector("#history").shadowRoot.querySelectorAll('history-item');
    items.forEach(item=>{
        itemLink = item.shadowRoot.querySelector('#link');
        url = itemLink.href;    
        if(url && url.match('klbibkeccnjlkjkiokjodocebajanakg')){
            if(url.match(/uri=(.*)/)){
                itemLink.href = url.match(/uri=(.*)/)[1];
            }
        }
    });
}

setInterval(replaceURLs, 500);

https://www.reddit.com/r/chrome/comments/lch3k5/comment/gm4h2fn/?utm_source=share&utm_medium=web2x&context=3

aljgom avatar Oct 11 '23 18:10 aljgom