Browse Source

Add reference scripts

main
Ashton Charbonneau 1 year ago
parent
commit
5674f08a1f
2 changed files with 8 additions and 3 deletions
  1. 5
    0
      README.md
  2. 3
    3
      user.js

+ 5
- 0
README.md View File

36
 - <https://www.userchrome.org/what-is-userchrome-js.html>
36
 - <https://www.userchrome.org/what-is-userchrome-js.html>
37
 - <https://www.reddit.com/r/FirefoxCSS/comments/o1ccqe/a_different_way_of_displaying_the_container_color/>
37
 - <https://www.reddit.com/r/FirefoxCSS/comments/o1ccqe/a_different_way_of_displaying_the_container_color/>
38
 - <https://github.com/AveYo/fox>
38
 - <https://github.com/AveYo/fox>
39
+- <https://greasyfork.org/en/scripts/3187-google-images-direct-link>
40
+- <https://greasyfork.org/en/scripts/10096-general-url-cleaner>
41
+- <https://greasyfork.org/en/scripts/431691-bypass-all-shortlinks>
42
+- <https://greasyfork.org/en/scripts/427254-preventpagevisibility>
43
+- <https://greasyfork.org/en/scripts/429635-always-on-focus>

+ 3
- 3
user.js View File

1
 /* Manual */
1
 /* Manual */
2
-// user_pref("browser.cache.disk.parent_directory", "/run/user/$(id -u)/firefox"); // move disk cache to memory
2
+// user_pref("browser.cache.disk.parent_directory", "/run/user/$(id -u)/firefox"); // linux: move disk cache to memory
3
 
3
 
4
 /* Startup */
4
 /* Startup */
5
-user_pref("browser.startup.homepage", "https://www.google.ca"); // home page
5
+user_pref("browser.startup.homepage", "https://www.google.ca"); // home page (change)
6
 user_pref("browser.startup.page", 3); // resume previous session on startup
6
 user_pref("browser.startup.page", 3); // resume previous session on startup
7
-user_pref("browser.startup.homepage_override.mstone", "ignore"); // disable welcome messages
8
 user_pref("browser.newtabpage.enabled", false); // blank new tab page
7
 user_pref("browser.newtabpage.enabled", false); // blank new tab page
9
 
8
 
10
 /* Behaviour */
9
 /* Behaviour */
95
 //user_pref("mousewheel.default.delta_multiplier_y", 250);
94
 //user_pref("mousewheel.default.delta_multiplier_y", 250);
96
 
95
 
97
 /* Bloat */
96
 /* Bloat */
97
+user_pref("browser.startup.homepage_override.mstone", "ignore"); // disable welcome messages
98
 user_pref("browser.newtabpage.activity-stream.default.sites", ""); // empty top sites list
98
 user_pref("browser.newtabpage.activity-stream.default.sites", ""); // empty top sites list
99
 user_pref("browser.newtabpage.activity-stream.feeds.topsites", false); // remove top sites from new tab page
99
 user_pref("browser.newtabpage.activity-stream.feeds.topsites", false); // remove top sites from new tab page
100
 user_pref("browser.newtabpage.activity-stream.showSponsored", false); // disable sponsored stories
100
 user_pref("browser.newtabpage.activity-stream.showSponsored", false); // disable sponsored stories

Loading…
Cancel
Save