TE
TechEcho
Home24h TopNewestBestAskShowJobs
GitHubTwitter
Home

TechEcho

A tech news platform built with Next.js, providing global tech news and discussions.

GitHubTwitter

Home

HomeNewestBestAskShowJobs

Resources

HackerNews APIOriginal HackerNewsNext.js

© 2025 TechEcho. All rights reserved.

Detect when your installed Firefox addons have changed owners

45 pointsby bjordabout 1 year ago

8 comments

mtmailabout 1 year ago
Related from last week &quot;Detect when your installed Chrome extensions have changed owners&quot; <a href="https:&#x2F;&#x2F;news.ycombinator.com&#x2F;item?id=39620060">https:&#x2F;&#x2F;news.ycombinator.com&#x2F;item?id=39620060</a> (291 comments) Yes, I know the discussion is also linked in the documentation of the tool.
mgabout 1 year ago
It&#x27;s strange that addons have so much unsandboxed power. I think browser manufacturers are not very keen on letting users customize their browsing experience. Otherwise they would give them finer control over what addons can do.<p>Fortunately, most customizations can be done via bookmarklets.<p>Benefits of bookmarklets:<p>- Easy to edit<p>- Inactive until clicked<p>- Work in all browsers<p>- Work on mobile<p>- Integrate nicely into the UI. You can move them around, put them into any bookmark folder, assign shortcuts.<p>I wrote this bookmarlet editor which makes it easy to convert between clean code and a bookmarklet:<p><a href="https:&#x2F;&#x2F;www.gibney.org&#x2F;bookmarklet_editor" rel="nofollow">https:&#x2F;&#x2F;www.gibney.org&#x2F;bookmarklet_editor</a><p>Here is one that I use to read HN:<p><pre><code> if (!location.href.match(&#x27;ycom&#x27;)) location.href=&#x27;https:&#x2F;&#x2F;news.ycombinator.com&#x27;; doTheMagic = function() { if (typeof e!==&#x27;undefined&#x27;) e.style.background=&#x27;#c0c0c0&#x27;; e=Array.from(document.querySelectorAll(&#x27;.age a:not(.seen)&#x27;)).sort().at(-1);e.style.background=&#x27;#ff0&#x27;; e.classList.add(&#x27;seen&#x27;); e.scrollIntoView({behavior:&quot;smooth&quot;,block:&quot;center&quot;,inline:&quot;nearest&quot;}); } doTheMagic(); if (typeof theMagicIsActive==&#x27;undefined&#x27;) { document.addEventListener(&quot;keydown&quot;, function(evnt) { if (evnt.key === &quot;n&quot;) doTheMagic(); }); theMagicIsActive = true; } </code></pre> When clicked and HN is not already opened, it opens HN. When on HN, it jumps to the next newest story. Or comment - it also works in the threads. After jumping to the newest story, clicking it again jumps to the next newest story. Instead of clicking it, pressing &quot;n&quot; also works.<p>Also works in the comments view of a profile. So when you want to see if someone replied to your comments, you click on &quot;comments&quot; in your profile and then on the bookmarklet to jump to the newest reply.
评论 #39681962 未加载
评论 #39684246 未加载
评论 #39682389 未加载
trwiredabout 1 year ago
I noticed about myself that in recent years I am becoming increasingly paranoid when it comes to addons and avoid installing any but the most popular&#x2F;trusted, not just for Firefox, but all applications I use. If there is an addon that does something I want and doesn&#x27;t fit my criteria for trust, I either write my own private clone, adjust my habits not not need it or (the most frequent outcome) just suck it up.
评论 #39681739 未加载
yjftsjthsd-habout 1 year ago
On the Chrome extension, the top HN comment was pointing out that it <i>doesn&#x27;t</i> show change in owners, but change in the owner&#x27;s key, which makes it susceptible to false positives and false negatives. Does the Firefox version work any more reliably?
评论 #39688953 未加载
spharsabout 1 year ago
I like the idea of this and I&#x27;ll probably use it. But what I really want to know is <i>when</i> my extensions are updated. Some extensions will open an information page when this happens, but I want a browser setting to let me know when any extension updates.<p>I know there is a setting to not auto-update on an case-by-case basis, as browsers auto-update extensions by default as a security measure. In that case, an alert that there are updates would be welcome.<p>Any solution to this, or am I missing a setting somewhere? (On Firefox or Chrome)
评论 #39684403 未加载
Gysabout 1 year ago
I now disabled for all extensions the automatic updates. All extensions are working as expected so I will only update one of them in case of problems. In which case I also (mental note) will check the ownership.<p>Can an extension see what other extensions are installed and their versions? Can your extension maybe show when one of them is updated? Can also be a way to keep &#x27;manually&#x27; an eye on changes?
O1111OOOabout 1 year ago
Thank you for this! I read about the chrome extension[0] and was hoping something like this would come to FF. I have already installed this.<p>[0] <a href="https:&#x2F;&#x2F;news.ycombinator.com&#x2F;item?id=39620060">https:&#x2F;&#x2F;news.ycombinator.com&#x2F;item?id=39620060</a>
ChrisArchitectabout 1 year ago
Trying to show us something in this fork?<p>A lot of discussion on the main one earlier: <a href="https:&#x2F;&#x2F;news.ycombinator.com&#x2F;item?id=39620060">https:&#x2F;&#x2F;news.ycombinator.com&#x2F;item?id=39620060</a>
评论 #39681569 未加载