From c9d4fdd020816b319ed6c5aa20379856e040456e Mon Sep 17 00:00:00 2001 From: aminomancer <33384265+aminomancer@users.noreply.github.com> Date: Tue, 4 Jan 2022 17:11:50 -0800 Subject: [PATCH] update readme --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index c0b7aa16..485c9dbd 100644 --- a/README.md +++ b/README.md @@ -1280,7 +1280,7 @@ Various tiny mods not worth making separate scripts for. Read the comments [insi
-[Searchfox](https://searchfox.org): A search engine for Firefox's source code. This is what I use to write most of my scripts. For example, if you wanted to make a button that adds a bookmark, you could find something in the UI that already does that, copy its ID, and search for it on Searchfox. From there you could track down its callback function, copy something from that and search for it, and ultimately find what you need. It indexes several repositories, including multiple versions of Firefox. You can permanently add this search engine to Firefox by installing [this addon](extensions/search-extensions/searchfox.zip), which makes writing code for Firefox immensely faster. +[Searchfox](https://searchfox.org): A search engine for Firefox's source code. This is what I use to write most of my scripts. For example, if you wanted to make a button that adds a bookmark, you could find something in the UI that already does that, copy its ID, and search for it on Searchfox. From there you could track down its callback function, copy something from that and search for it, and ultimately find what you need. It indexes several repositories, including multiple versions of Firefox. You can permanently add this search engine to Firefox by installing [this addon](https://addons.mozilla.org/firefox/addon/searchfox-engine) and navigating to `about:preferences#search` to give the engine a keyword. I use `fox`, which makes writing code for Firefox immensely faster. [FirefoxCSS Subreddit](https://www.reddit.com/r/FirefoxCSS): Where to bring questions about modding Firefox.