Jump to content

Leaderboard

The search index is currently processing. Leaderboard results may not be complete.

Popular Content

Showing content with the highest reputation on 04/22/2026 in Posts

  1. https://askubuntu.com/questions/404737/horizontal-scrolling-in-firefox-to-shiftmouse-scroll-instead-of-back-forward/404830#404830
    2 points
  2. Yeah, the topic name was fine, this should have been split to a new topic.
    1 point
  3. Toggle media.autoplay.enabled - A custom button for toggling the Boolean variable media.autoplay.enabled created by AstroSkipper The custom button Toggle media.autoplay.enabled is the same button as Toggle CSP except the changes I already described in my previous post. It's an example how easy another Boolean variable can be toggled by this button. And, I created this version at the very special request of @Mathwiz. I also changed the button images, of course. A green image always means the value true, a red image the value false. Of course, this can be changed and adapted to the user's needs at any time. Here is the download link: https://www.mediafire.com/file/lvsq0ss3xuinxwe/Toggle_media.autoplay.enabled.xml/file Greetings from Germany, AstroSkipper
    1 point
  4. I followed your links and downloaded the Custom Buttons extension. Its install.rdf file tops out at Firefox 48, so to install it in either Serpent version, you need to modify that, since Serpent uses the Firefox app ID. I changed it to 55.* and it installed OK in St 55. I'm presuming the same change will let it install in St 52 as well; I'll test that later if I get some time. The only odd thing I found was that I had to restart Serpent 55 twice before it was ready to go. Next, I went to that link, but this is all I saw: So yes, it appears you've created the necessary custom button, but there's no code, no link, nothing to test in Custom Buttons at that post. Anyway, it's no big deal. I was only "asking for a friend," but can't remember who, because the original question was from My Browser Builds part 3, and now that that thread has been closed, the board doesn't let you quote from it as easily (no "Quote" prompt shows up when selecting text) so I just copied it and pasted into a quote block. Hello, @Mathwiz! I have posted my custom button "Toggle CSP" at last. Here is the link to my post: Furthermore and especially for you, I have made a second custom button "Toggle media.autoplay.enabled" including a change of the button images. Here is the link to this post: Kind regards, AstroSkipper PS: Additionally, I was able to install the legacy extension Custom Buttons and my custom button Toggle CSP in Mypal 68, too. Both are fully functional and working fine in Mypal 68. At the moment, I am in the process of testing that more closely. Here is the dedicated post:
    1 point
  5. Toggle CSP - A custom button for toggling the Boolean variable security.csp.enable from true to false and vice versa in about:config created by AstroSkipper Toggle CSP is a custom button for toggling the Boolean variable security.csp.enable from true to false and vice versa in about:config. The status of this variable is shown by the button itself in the form of an image that changes its colour, i.e. its image accordingly. Actually, I created this button for the specific boolean variable security.csp.enable, but the code of this button is universal and can be easily modified to toggle other Boolean variables, too if you change its code slightly. The user has only to change the name of this button, the string of the Boolean variable and optional, but useful, its images. Very simple changes. It works perfectly in all UXP browsers such as New Moon 28, Serpent 52 and even in Serpent 55. Here are some screenshots: The variable security.csp.enable is set to true by Toggle CSP: The variable security.csp.enable is set to false by Toggle CSP: The functionality of Toggle CSP can be checked excellently and observed live, so to speak, by opening the variable security.csp.enable in about:config and clicking on the custom button. And here is the JavaScript code of my button: /*Initialization Code*/ var prefName = "security.csp.enable"; var enabledImage = "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAUCAYAAACNiR0NAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAgY0hSTQAAeiYAAICEAAD6AAAAgOgAAHUwAADqYAAAOpgAABdwnLpRPAAAAO1JREFUOE9jZPgPhFQFIAOpCalqGNi31HQdfQz8R6Gb4drVwLGNwGlQGWQxWAC5Iqnjg7LnwtSD/G0GFYSFpzSQzwTEfWjiIANhPgCx7aGG6COpg6bD/wxuWLzagWYgcgSCDDSG6pmHzcBuHGEH83IEmjxI3A4qpoDNQJBrcMFcpDCDqYFZFACV248chiBJayzGgcLrA5I4SF0tTCOQNsCiByxkBLXlJVTBOSCdA8RiaGEIMnADkoGmuAwEGSqO5C2QxlYgPg8VY4bSoCQCgqFIasPQDMViB2ZI/iFKFUQfCUqJy/WjBhIXTnhUAQCxF7FzNVSQlgAAAABJRU5ErkJggg=="; var disabledImage = "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAUCAYAAACNiR0NAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAgY0hSTQAAeiYAAICEAAD6AAAAgOgAAHUwAADqYAAAOpgAABdwnLpRPAAAAOlJREFUOE9j/M/AAERUBCADqYlBzhvpBv6jMAjgYagGiW04ToMajCwGYoPC3BVJHR+UPRemHqTADCoIiyBpIJ8JiPvQxEEGwnwAYttDDdFHUgd2IUjSDYtXO9AMRE4RID3GUD3zsBnYjSPsYF6OQJMHidtBxRSwGQhyDa40mYsUZjA1MIsCoHL7kcMQJGmNxUBQeH1AEgepq4VpBNIGWPSAw9AIastLqIJzQDoHiMXQwhBk4AYkA01xGQgyVBzJWyCNrUB8HirGDKVBSQSkNhRJbRiaoUTl5T94whc93IkykJQCZNRAygtbAOb2sXODGkDmAAAAAElFTkSuQmCC"; this.onclick = function (aE) { if (aE.button === 0) { Services.prefs.setBoolPref(prefName, !Services.prefs.getBoolPref(prefName)); setSelfImage(); } }; function setSelfImage() { if (Services.prefs.getBoolPref(prefName)) self.image = enabledImage; else self.image = disabledImage; } setSelfImage(); For using my custom button with other Boolean variables, you have to change the strings of var prefName, var enabledImage and var disabledImage. Furthermore, the name and image of your new custom button in its editor above the /*Initialization Code*/ should be changed, too. Here is a further screenshot of the button's editor. I have outlined all the areas to be changed with red rectangles: I uploaded the Toggle CSP custom button as an XML file for an offline installation. Here is the download link: https://www.mediafire.com/file/fjgxbc09q4r31s4/Toggle_CSP.xml/file For the installation of this button, the extension Custom Buttons is required which you can get from this post: Cheers, AstroSkipper
    1 point
  6. Hello @roytam1! That doesn't sound good, but luckily, nothing worse happened. I wish you a successful and complete recovery. For now, take care of your fingers so as not to jeopardise the healing process. Of course, one could also say: Best wishes for a speedy recovery from Germany, AstroSkipper
    1 point
  7. Same here! There are posts one can't react by liking or upvoting due to its content. That would otherwise be completely misleading. As if one would take pleasure in the suffering of others or even agree with it.
    1 point
  8. All this has more to do with wear and tear and physical as well as mental overstrain. But I don't see any connection with stupidity. Apart from the kind of "stupidity" of negligently or wilfully injuring oneself physically or mentally if so.
    1 point
  9. I am not a medical doctor or psychologist and can say little about such symptoms. Any form of trauma naturally has an effect on the brain. In my consideration of stupidity, I have excluded physical or mental suffering as well as illness and refer to the stupidity of a healthy person. Perhaps I should have mentioned this as a prerequisite! Very negligent of me! Anyway, your symptoms have nothing to do with stupidity. PS: I will correct that in my previous posts.
    1 point
  10. Yep! That's the last official version from AMO or Classic Add-ons Archive. I already posted that in my thread: Additionally, I have further modified, fixed and more recent versions, too. The version in my quoted post is Custom Buttons 0.0.5.8.9.6-fixed8. And I can confirm it works in all UXP browsers such as for example New Moon or Serpent.
    1 point
  11. As I tried to differentiate above, stupidity of a healthy person is the result of mainly three different components: Intelligence, knowledge (education) and experience. The intelligence component consists of a genetic and a non-genetic sub-component. A person's intelligence cannot be explained by genetics alone. It has to develop in their ontogenesis. Depending on the genetic predispositions, however, it can develop better or worse. But, apart from all chemical and physical influences such as nutrition and many other environmental parameters, the learning process of a person is the key to get the maximum of this development which only ends by death. And this varies greatly from one individual to another. Therefore, an infinite number of types of stupidity exist.
    1 point
  12. Ok! In any case, you both are adults and when the cards have been laid openly on the table, everyone is responsible for their own decisions or actions. Therefore, I believe, time will tell.
    1 point
×
×
  • Create New...