question-mark
Stuck on an issue?

Lightrun Answers was designed to reduce the constant googling that comes with debugging 3rd party libraries. It collects links to all the places you might be looking at while hunting down a tough bug.

And, if you’re still stuck at the end, we’re happy to hop on a call to see how we can help out.

Some features are missing in Firefox

See original GitHub issue

I’ve been using this feature for both GHE and github.com and recently I can’t remember when it seems to have stopped working. I checked that I’m on the latest version of the extension 22.9.15 and the PATs for both instances are ✅ under extensions settings.

Here’s the screenshot for github.com. I’ve also restarted the browser and computer just in case.

image

Example URL

https://github.com/notifications

Issue Analytics

  • State:closed
  • Created a year ago
  • Reactions:6
  • Comments:9 (5 by maintainers)

github_iconTop GitHub Comments

5reactions
cheap-glitchcommented, Sep 28, 2022

This feature and several others (toggle-files-button, reactions-avatars, maybe more) are completely broken on Firefox (tested on both Linux & macOS). They don’t appear even when reloading the page. This is the case since the previous version btw.

3reactions
fregantecommented, Sep 30, 2022

Confirmed to be a bug visible at least in Firefox. It’s due to getSnapshotUUID and probably a difference in stack trace format.

Possible solutions:

  • fix getSnapshotUUID so that it points to the right line in the source
  • replace the classname generation with a WeakMap-based random ID, like:
    const ids = new WeakMap();
    function getFunctionId(fn) {
        if (!ids.has(fn)) {
    		ids.set(fn, crypto.randomUUID().slice(0, 6))
    	}
    	return ids.get(fn)
    }
    
    className = 'rgh-' + getFunctionId(listener)
    
Read more comments on GitHub >

github_iconTop Results From Across the Web

Tools / Features missing | Firefox for Android Support Forum
Anyway Some features are missing..I request dev teams to look into it and try ... #1 forward/Backward button on direct Index screen missing....
Read more >
Aspects of some websites do not function on Firefox, but do on ...
I have a problem that is not a Firefox problem per se, but which is somehow related. I have used Firefox as my...
Read more >
Restore the Menu bar in Firefox - Mozilla Support
The Firefox Menu bar (File, Edit, View, History, Bookmarks, etc.) may be hidden or missing. Learn how to restore the Menu bar.
Read more >
Websites look wrong or appear differently than they should
This article explains how to fix problems with websites that display incorrectly in Firefox or don't work the way they should.
Read more >
Troubleshoot and diagnose Firefox problems - Mozilla Support
Some Firefox issues can be caused by a problem with one of the Firefox program files. Follow these steps to completely remove and...
Read more >

github_iconTop Related Medium Post

No results found

github_iconTop Related StackOverflow Question

No results found

github_iconTroubleshoot Live Code

Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free

github_iconTop Related Reddit Thread

No results found

github_iconTop Related Hackernoon Post

No results found

github_iconTop Related Tweet

No results found

github_iconTop Related Dev.to Post

No results found

github_iconTop Related Hashnode Post

No results found