#firefox add-ons
Explore tagged Tumblr posts
oliswamp · 2 years ago
Text
I'd also like to introduce you to ruffle, a flash player emulator. You can download it to open old flash files or use the add-on/extension in Chrome, Fireworks and Safari. It can open all those forgotten flash games that still exist on the internet.
it's come to my attention that a lot of people don't know about bluemaxima's flashpoint and genuinely think they'll never be able to play their favorite 00s internet games ever again so i just want to remind everyone that flashpoint is a huge internet flash game preservation project that allows you to play just about any internet flash game/animation despite the death of flash. if they've got it in their database (and they probably do) you can play it. go forth and drink in the 00s nostalgia
even if you think there's no way they'll have the game u want. they probably do anyway. when i first downloaded flashpoint i thought for sure theres no way they will have the obscure flash game i played for hours as a kid that was only even available on the internet for like 2 months in 2006. but you know what. they had it. seriously, download flashpoint
50K notes · View notes
x-v4mp3y3lin3r-x · 2 years ago
Text
Yesterday I finished moving to Firefox so here's some extensions. First, the serious ones:
AdBlocker Ultimate: Your run-of-the-mill adblock. I chose this one instead of uBlock since I'm fairly sure uBlock was giving me problems on Chrome and I don't wanna repeat the experience. You can use the "Block Element" feature to get rid of all the new annoying Tumblr features, it's easy.
ClearURLS: Removes tracking from URLs.
Decentraleyes: Protects from tracking & targeted ads.
DuckDuckGo Privacy Essentials: More tracking, cookies, etc etc protection.
Privacy Badger: More tracking protection.
Shinigami Eyes: Marks transphobic blogs/accounts/profiles red.
Alright now some less serious, more fun ones:
Enhancer For Youtube: Gives you a highly customizable utility bar with features like simple screenshotting, pop-up players, volume enhancement, & other things. Also has the ability to alter your YouTube theme and toggle settings that'll stop pesky YouTube tabs from automatically starting.
Firefox Color: Custom themes for dummies! It doesn't customize everything but it gets pretty close. I think this would be a good tool for folks who need high contrast themes and can't find pre-made ones suited to their needs. Also comes with a few pre-made themes you can either use or use as bases.
LanguageTool: A spelling and grammar checking program that works in many languages and on all websites!
OneTab: Turns tabs into lists. Fantastic for when you're knee-deep in hyperfixation/special interest territory, or even for research.
Turbo Download Manager: Helps with frustrating downloads.
Video DownloadHelper: Gives you options to download any video from your tabs in multiple formats. Also has the option to download and convert to another format. [Update: This one requires a paid subscription AND externally downloaded program for these features. Nevermind.]
XKit Rewritten: Most Tumblr users already know of xKit but I'm including the link nonetheless! This kit makes Tumblr on PC enjoyable.
Custom Scrollbars: Makes your scrollbar pretty :)
Also, Firefox has their own page of useful add-ons, like Facebook containers and note-taking extensions. There's also a ton of themes. I don't think any of these are advertised on the main add-ons page? So I might as well mention it.
cheers :)
266 notes · View notes
cheebuss · 8 months ago
Text
Damn I kind of hate how I can't Google references for anything without having to scroll past 4000 absolute dogshit A.I images. I actually hate you cunts so much it's unreal.
26 notes · View notes
theoneofwhomisblue · 1 year ago
Text
Yo, I switched to Firefox
I was able to carry over my data, passwords, bookmakers, history, all that shit
I'm still gonna use Gmail, and Google photos, cause Firefox don't got one of those yet
But I'm doing decent it seems
What was the addon for getting past paywall/sign up walls on sites?
And anyone else got any other add-ons to recommend? It'd be much appreciated
92 notes · View notes
izicodes · 2 years ago
Text
Coding A Simple Firefox Extension
Tumblr media
Hiya! Today I want to share my experience creating a simple Firefox extension. I was a bit intimidated by the idea of creating an extension, but I was determined to give it a try! Been on my 'projects to-do' list for a long time! 😅
I found that the process was actually quite straightforward, and with some guidance from a couple of YouTube videos, I was able to create a working (temporary) extension in just an hour. My hope is that this post will serve as a helpful guide for anyone who is interested in creating their own Firefox extension~!
Tumblr media
What exactly are we making?
Tumblr media Tumblr media
We will be making a simple temporary extension - an extension that only you have access to e.g. end-users will not be able to use the extension. This is a way to test if your extension works and find issues. I might make another post on how to actually upload it for other people to use, but for now, this method is for you to use the extension.
This is the link to the official Mozilla Firefox 'Temporary installation' Guide' for extenisions - LINK
Now, for the steps into making the extension:
Setting up the development environment
Creating a manifest file
Adding a pop-up window
Attaching JavaScript functionality to a button
Load your extension in Firefox
Let's get started~!
Tumblr media
Step 1 - Setting up the development environment
Tumblr media Tumblr media
Obviously, you will need to have Firefox installed on your computer. You will also need a code editor, such as Visual Studio Code or Sublime Text, to write your code. I'm going to use VS Code.
In your code editor, create a new folder where you will store your extension files. You can name this folder whatever you like. For this example, I will call it 'Firefox Extension'. I also recommend adding the following files in the folder:
index.html (or in this case popup.html file)
icon image in .png or .jpg or similar formats
manifest.json - talked about in the next step
script.js
Step 2 - Creating a manifest file
Tumblr media
The most important file I believe when creating an extension is the manifest JSON file. This file will contain metadata about your extension, including its name, version, and permissions. In your new folder, create a new file called "manifest.json".
This is the general structure of the file. The icon size you need to have is 48x48 pixel size image and then you can have others to be responsive to screensizes, I just added one extra. The 'browser_action' part includes the default icon image that will display an icon in the Firefox toolbar and the popup html file. In 'scripts', that is where we will add the JavaScript code to run.
Step 3 - Adding a pop-up window
Tumblr media
The code simply displays the text "Hello World" and a button in the center of the window. I assume you're good at your HTML and CSS so I won't go into too much detail here but the CSS is in the style tags within the head tags and what we can see also is what is between the body tags - the 'Hello World' and the 'Click me!' button.
Don't forget to include the script tag at the end of the body tag so it'll link to the script.js file in your folder AND include "scripts": ["script.js"] in the manifest.json for the javascript code.
Step 4 - Attaching JavaScript functionality to a button
Tumblr media
Again, I hope you very basic JavaScript. This code basically adds an event listener to the button with the ID "myBtn" (which is the button with 'Click me!' on it). When the button is clicked, it changes the heading 1 text from 'Hello World' to 'The button was clicked!'.
And that it! Done with all the coding part and now to upload it for you to use~!
Step 5 - Load your extension in Firefox
Tumblr media
Open Firefox and type "about:debugging" in the address bar. This will open the Firefox Developer Tools page. Click the "This Firefox" section to the left of the page, then click "Load Temporary Add-on". Navigate to your extension folder and select the manifest.json file.
The extension is now loaded in Firefox! Click the icon in the toolbar to see your pop-up window!
Tumblr media
Whenever you make changes to the extension, back on the Firefox Developer Tools page, click the 'Reload' button on your extension section and changes should show up!
Tumblr media
I hope that this post has been helpful to you and that it has inspired you to create your own Firefox extension! 👩🏾‍💻💗 Remember, the most important thing is to have fun and experiment with different ideas - play with the colours or sizes or the javascript code! Don't be afraid to try new things and explore!!
Extra links that helped me learn:
How to build an extension for Firefox in less than 5 minutes [video]
Temporary installation in Firefox [webpage]
Thanks for reading 🥰💗
168 notes · View notes
yuzu-balignon · 1 year ago
Text
Get your add-ons on mobile NOW
Mozilla recently announced that, in a ground-shaking move, Firefox on Android would support virtually all add-ons. What a great christmas gift ! Firefox will be the 1st mobile browser to fully support modern add-ons ✨
But you said now you lowly liar :(
Yes ! In fact you don't have to wait at all !!! If you download Firefox Beta (119) or Firefox Nighyly (120), then you can enjoy your favourite extensions ! Just click on the add-ons menu, then Find More. Search for your favourite ones, and don't forget to filter by Everything (default to Recommended)
Tumblr media
Enjoy a vastly enhanced browsing experience on mobile on world's best browser !
58 notes · View notes
mario-breskic · 2 months ago
Text
EX‑LOG
For your eyes only.
Using Firefox browser.
My current Add‑on stack:
Allow Right-Click†
Block Site*
Chronological Threads†
Control Panel for Twitter†
Cookie Quick Manager**
cookies.txt
Dark Reader
Decentraleyes
Feed Indicator
Firefox Multi-Account Containers**
Form History Control
Fraidycat†
Ghostery
Mind the Time
Old Reddit Redirect†
Privacy Badger
Reddit Enhancer†
Search by Image
Startpage Privatsphäre-Schutz
uBlacklist***
uBlock Origin****
Wayback Machine
xIFr
XKit Rewritten*****†
*add “*://wikipedia.org/*” at the very least, to improve search/research
**use Cookie Quick Manager together with Firefox Multi‑Account Containers to assign specific cookies to specific containers
***add “://.wikipedia.org/*” at the very least, to improve search/research
****add the following to your own filters, if neccessary, on top of all the usual blocking:
www.google.com##div.MjjYud:nth-of-type(3) www.google.com##div.MjjYud:nth-of-type(5)
www.bing.com##.b_results_eml www.bing.com##.b_vidAns.b_mop.b_ans www.bing.com##.b_imgans.b_topborder.b_top.b_ans www.bing.com###genId928 www.bing.com###genId934 www.bing.com###b_context > li.b_ans www.bing.com##[href^="/videos/riverview/relatedvideo"]:nth-ancestor(2) www.bing.com##.b_topborder.b_top.b_ans
www.tumblr.com##.HphhS www.tumblr.com##.NWfPW www.tumblr.com##._X19c www.tumblr.com##.oMSQy www.tumblr.com##aside > div.FZkjV > div www.tumblr.com##.PwJi6 www.tumblr.com##.g8SYn.zxn0J.IYrO9 > .tDT48 www.tumblr.com##div.MNkkC:nth-of-type(2) www.tumblr.com##.yVZYV > .YjoFC
*****I’ve turned on Mass Deleter, Quick Tags, Show Originals (best quality of content improvement for me so far, outside of custom filters: no more reblogs!), Tag Replacer, and Timestamps
†Quality of life Add‑ons
Use filters everywhere and always: don’t let people (and products) inside your head that easily!
4 notes · View notes
wabblebees · 1 year ago
Text
heyo, anyone got any firefox extension recommendations that would help remove ai generated bullshit from search results?? im going fucking insane out here. attempting any kind of reference img research kinda already sucked bc of pintrest, but now its so so SO much fucking worse
53 notes · View notes
queerofthedagger · 8 months ago
Text
why is it that every single app manages to open links in firefox, my default browser, but tumblr for SOME fucking reason sends me to chrome every single time. like there is even an option in the chrome menu then to 'open in firefox instead' so clearly it Knows that chrome is Not My Fucking Default. like. oh my godddd
9 notes · View notes
ya-killin-me-smalls · 1 year ago
Text
Long Loading Times on YouTube Videos?
for my Firefox-using followers who may have noticed that Youtube now takes 8 years to load a video, it's because they're in bed with Google and intentionally making videos take an extra 5 seconds to run on anything but chrome
the solution? firstly, disable cookies so they can't see if you're using an adblocker or anything of the sort
second, install this add-on:
and then to set it up, here's what you do
select Extensions in the top right corner, looks like a little puzzle piece
select User-Agent Switcher and Manager
it'll pull down the menu below, make sure chrome is selected in the top left box and whatever OS you're running
delete existing text in the box at the bottom of the menu, then select the button for the latest version of chrome
the agent ID will appear in the box, then you just click Apply(containter) at the bottom right
Youtube should load with zero issues after that
stick it to the man
Tumblr media
20 notes · View notes
maareyas · 9 months ago
Text
just found out that both paypal and ko-fi load wayyyy slower on firefox 💀 man the bias towards chrome is worse than i thought huh
8 notes · View notes
realjoehours · 1 month ago
Text
i'm on a quest to cut down my watch later playlist on youtube down to 0 and i can now report that i've rounded it down to a clean 2,000
i uh- am not getting this done anytime soon...
2 notes · View notes
kaxen · 2 months ago
Text
My characters don't celebrate Christmas due to some undefined past historical event that pushed society towards atheism and 300-superstitions-in-a-trenchcoat rather than organized religion.
Due to the capitalist dystopia vibes, I was originally gonna go with "Nondenominational Winter Holiday" but currently I think it's a lot funnier if "Black Friday" is a bizarre 3 month long fixture in their society.
Like Christmas Creep but more blunt in its purpose "buy stuff to forget your problems, peons!"
4 notes · View notes
charlignon · 2 years ago
Text
For those who don't know, XKit Rewritten is a browser add-on that provides a diversity of quality-of-life features for the Tumblr website, for a better and more customisable user experience. It is available on Firefox and Chrome.
And if you are an Android user, you can get it on Firefox Nightly as well ! It requires a few technical steps but it's definitely doable :)
74 notes · View notes
kandicon · 4 months ago
Text
Tumblr media
Terrifying mental imagery. Thanks for the input
2 notes · View notes
starheirxero · 1 year ago
Text
wait genuine question. how does one make a wiki on a site that ISN’T the fandom wiki? like. i wanna make a wiki for a fandom, but not on fandom wiki. so how do i do that
14 notes · View notes