├── LICENSE ├── README.md ├── firefox-info ├── command-line-options.md ├── preferences-group-view.md └── profile-in-a-folder-or-encrypted.md ├── firefox-style ├── chrome │ ├── userChrome.css │ └── userContent.css └── chrome_debugger_profile │ ├── chrome │ └── userContent.css │ └── user.js ├── javascript ├── firefox-extensions-list-with-amo-links.js ├── firefox-extensions-list-with-last-updated-order.js ├── firefox-list-enable-disable-add-ons-from-console.md ├── firefox-toggle-add-ons-from-console.js └── firefox-v109-change-order-under-extensions-button.js ├── links-elsewhere-android.md ├── links-elsewhere.md └── userscript ├── all_-_copy_link_on_click.user.js └── reddit_-_unblock_-_create_cookie_and_reload.user.js /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icpantsparti2/browser-bits/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icpantsparti2/browser-bits/HEAD/README.md -------------------------------------------------------------------------------- /firefox-info/command-line-options.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icpantsparti2/browser-bits/HEAD/firefox-info/command-line-options.md -------------------------------------------------------------------------------- /firefox-info/preferences-group-view.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icpantsparti2/browser-bits/HEAD/firefox-info/preferences-group-view.md -------------------------------------------------------------------------------- /firefox-info/profile-in-a-folder-or-encrypted.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icpantsparti2/browser-bits/HEAD/firefox-info/profile-in-a-folder-or-encrypted.md -------------------------------------------------------------------------------- /firefox-style/chrome/userChrome.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icpantsparti2/browser-bits/HEAD/firefox-style/chrome/userChrome.css -------------------------------------------------------------------------------- /firefox-style/chrome/userContent.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icpantsparti2/browser-bits/HEAD/firefox-style/chrome/userContent.css -------------------------------------------------------------------------------- /firefox-style/chrome_debugger_profile/chrome/userContent.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icpantsparti2/browser-bits/HEAD/firefox-style/chrome_debugger_profile/chrome/userContent.css -------------------------------------------------------------------------------- /firefox-style/chrome_debugger_profile/user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icpantsparti2/browser-bits/HEAD/firefox-style/chrome_debugger_profile/user.js -------------------------------------------------------------------------------- /javascript/firefox-extensions-list-with-amo-links.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icpantsparti2/browser-bits/HEAD/javascript/firefox-extensions-list-with-amo-links.js -------------------------------------------------------------------------------- /javascript/firefox-extensions-list-with-last-updated-order.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icpantsparti2/browser-bits/HEAD/javascript/firefox-extensions-list-with-last-updated-order.js -------------------------------------------------------------------------------- /javascript/firefox-list-enable-disable-add-ons-from-console.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icpantsparti2/browser-bits/HEAD/javascript/firefox-list-enable-disable-add-ons-from-console.md -------------------------------------------------------------------------------- /javascript/firefox-toggle-add-ons-from-console.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icpantsparti2/browser-bits/HEAD/javascript/firefox-toggle-add-ons-from-console.js -------------------------------------------------------------------------------- /javascript/firefox-v109-change-order-under-extensions-button.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icpantsparti2/browser-bits/HEAD/javascript/firefox-v109-change-order-under-extensions-button.js -------------------------------------------------------------------------------- /links-elsewhere-android.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icpantsparti2/browser-bits/HEAD/links-elsewhere-android.md -------------------------------------------------------------------------------- /links-elsewhere.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icpantsparti2/browser-bits/HEAD/links-elsewhere.md -------------------------------------------------------------------------------- /userscript/all_-_copy_link_on_click.user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icpantsparti2/browser-bits/HEAD/userscript/all_-_copy_link_on_click.user.js -------------------------------------------------------------------------------- /userscript/reddit_-_unblock_-_create_cookie_and_reload.user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icpantsparti2/browser-bits/HEAD/userscript/reddit_-_unblock_-_create_cookie_and_reload.user.js --------------------------------------------------------------------------------