├── .babelrc ├── .editorconfig ├── .eslintignore ├── .eslintrc ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── auto-merge.yml ├── code_of_conduct.md ├── config.yml ├── contributing.md ├── pull_request_template.md └── workflows │ ├── dependabot-auto-merge.yml │ └── telegram.yml ├── .gitignore ├── .gitmodules ├── .markdownlint.json ├── .prettierignore ├── .prettierrc ├── .stylelintrc ├── .svgo.yml ├── .vscode ├── extensions.json ├── js.code-snippets ├── settings.json └── tasks.json ├── README.md ├── gulp ├── ff.js ├── fp.js ├── gulpfile.babel.js └── lib │ ├── create-firefox-profile.js │ ├── logger.js │ └── print.js ├── gulpfile-bk.js ├── gulpfile.js ├── nodemon.json ├── package.json ├── src ├── chrome │ ├── css │ │ ├── aboutaddons │ │ │ ├── addonlists_compact-min.css │ │ │ ├── addonlists_compact.css │ │ │ ├── addonlists_disabled_grayscale_fx67.css │ │ │ ├── addonlists_private_browsing_notice_hidden.css │ │ │ ├── addonlists_replace_button_labels_with_icons.css │ │ │ ├── addonlists_show_buttons_inline.css │ │ │ ├── addonlists_show_buttons_inline_fx69.css │ │ │ ├── addons_manager_full_width.css │ │ │ ├── addons_manager_full_width_fx67.css │ │ │ └── details_page_alternative_content_order.css │ │ ├── picture-in-picture.css │ │ └── variables.css │ ├── scripts │ │ ├── ContextTranslate.uc.js │ │ ├── about-config-copy-userpref.uc.js │ │ ├── editbookmarkspopup_expanded.uc.js │ │ ├── favicon_in_urlbar.uc.js │ │ └── restart-button.uc.js │ ├── userChrome.css │ ├── userChrome.js │ └── userContent.css ├── icons │ ├── .svgo.json │ ├── .svgo.yml │ ├── .svgo2.yml │ ├── delete.svg │ ├── vimrc-out.svg │ └── vimrc.svg ├── user-base.js └── user.js └── tasks ├── bundle.js ├── cfg.js ├── clean.js ├── index.js ├── manifest.js ├── scripts.js ├── styles.js ├── syncy.js └── watch.js /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotiful/firefox-scripts/HEAD/.babelrc -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotiful/firefox-scripts/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotiful/firefox-scripts/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotiful/firefox-scripts/HEAD/.eslintrc -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotiful/firefox-scripts/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotiful/firefox-scripts/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/auto-merge.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotiful/firefox-scripts/HEAD/.github/auto-merge.yml -------------------------------------------------------------------------------- /.github/code_of_conduct.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotiful/firefox-scripts/HEAD/.github/code_of_conduct.md -------------------------------------------------------------------------------- /.github/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotiful/firefox-scripts/HEAD/.github/config.yml -------------------------------------------------------------------------------- /.github/contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotiful/firefox-scripts/HEAD/.github/contributing.md -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotiful/firefox-scripts/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/dependabot-auto-merge.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotiful/firefox-scripts/HEAD/.github/workflows/dependabot-auto-merge.yml -------------------------------------------------------------------------------- /.github/workflows/telegram.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotiful/firefox-scripts/HEAD/.github/workflows/telegram.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotiful/firefox-scripts/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotiful/firefox-scripts/HEAD/.gitmodules -------------------------------------------------------------------------------- /.markdownlint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotiful/firefox-scripts/HEAD/.markdownlint.json -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotiful/firefox-scripts/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotiful/firefox-scripts/HEAD/.prettierrc -------------------------------------------------------------------------------- /.stylelintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotiful/firefox-scripts/HEAD/.stylelintrc -------------------------------------------------------------------------------- /.svgo.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotiful/firefox-scripts/HEAD/.svgo.yml -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotiful/firefox-scripts/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/js.code-snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotiful/firefox-scripts/HEAD/.vscode/js.code-snippets -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotiful/firefox-scripts/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotiful/firefox-scripts/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotiful/firefox-scripts/HEAD/README.md -------------------------------------------------------------------------------- /gulp/ff.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotiful/firefox-scripts/HEAD/gulp/ff.js -------------------------------------------------------------------------------- /gulp/fp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotiful/firefox-scripts/HEAD/gulp/fp.js -------------------------------------------------------------------------------- /gulp/gulpfile.babel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotiful/firefox-scripts/HEAD/gulp/gulpfile.babel.js -------------------------------------------------------------------------------- /gulp/lib/create-firefox-profile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotiful/firefox-scripts/HEAD/gulp/lib/create-firefox-profile.js -------------------------------------------------------------------------------- /gulp/lib/logger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotiful/firefox-scripts/HEAD/gulp/lib/logger.js -------------------------------------------------------------------------------- /gulp/lib/print.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotiful/firefox-scripts/HEAD/gulp/lib/print.js -------------------------------------------------------------------------------- /gulpfile-bk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotiful/firefox-scripts/HEAD/gulpfile-bk.js -------------------------------------------------------------------------------- /gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotiful/firefox-scripts/HEAD/gulpfile.js -------------------------------------------------------------------------------- /nodemon.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotiful/firefox-scripts/HEAD/nodemon.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotiful/firefox-scripts/HEAD/package.json -------------------------------------------------------------------------------- /src/chrome/css/aboutaddons/addonlists_compact-min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotiful/firefox-scripts/HEAD/src/chrome/css/aboutaddons/addonlists_compact-min.css -------------------------------------------------------------------------------- /src/chrome/css/aboutaddons/addonlists_compact.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotiful/firefox-scripts/HEAD/src/chrome/css/aboutaddons/addonlists_compact.css -------------------------------------------------------------------------------- /src/chrome/css/aboutaddons/addonlists_disabled_grayscale_fx67.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotiful/firefox-scripts/HEAD/src/chrome/css/aboutaddons/addonlists_disabled_grayscale_fx67.css -------------------------------------------------------------------------------- /src/chrome/css/aboutaddons/addonlists_private_browsing_notice_hidden.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotiful/firefox-scripts/HEAD/src/chrome/css/aboutaddons/addonlists_private_browsing_notice_hidden.css -------------------------------------------------------------------------------- /src/chrome/css/aboutaddons/addonlists_replace_button_labels_with_icons.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotiful/firefox-scripts/HEAD/src/chrome/css/aboutaddons/addonlists_replace_button_labels_with_icons.css -------------------------------------------------------------------------------- /src/chrome/css/aboutaddons/addonlists_show_buttons_inline.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotiful/firefox-scripts/HEAD/src/chrome/css/aboutaddons/addonlists_show_buttons_inline.css -------------------------------------------------------------------------------- /src/chrome/css/aboutaddons/addonlists_show_buttons_inline_fx69.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotiful/firefox-scripts/HEAD/src/chrome/css/aboutaddons/addonlists_show_buttons_inline_fx69.css -------------------------------------------------------------------------------- /src/chrome/css/aboutaddons/addons_manager_full_width.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotiful/firefox-scripts/HEAD/src/chrome/css/aboutaddons/addons_manager_full_width.css -------------------------------------------------------------------------------- /src/chrome/css/aboutaddons/addons_manager_full_width_fx67.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotiful/firefox-scripts/HEAD/src/chrome/css/aboutaddons/addons_manager_full_width_fx67.css -------------------------------------------------------------------------------- /src/chrome/css/aboutaddons/details_page_alternative_content_order.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotiful/firefox-scripts/HEAD/src/chrome/css/aboutaddons/details_page_alternative_content_order.css -------------------------------------------------------------------------------- /src/chrome/css/picture-in-picture.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotiful/firefox-scripts/HEAD/src/chrome/css/picture-in-picture.css -------------------------------------------------------------------------------- /src/chrome/css/variables.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotiful/firefox-scripts/HEAD/src/chrome/css/variables.css -------------------------------------------------------------------------------- /src/chrome/scripts/ContextTranslate.uc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotiful/firefox-scripts/HEAD/src/chrome/scripts/ContextTranslate.uc.js -------------------------------------------------------------------------------- /src/chrome/scripts/about-config-copy-userpref.uc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotiful/firefox-scripts/HEAD/src/chrome/scripts/about-config-copy-userpref.uc.js -------------------------------------------------------------------------------- /src/chrome/scripts/editbookmarkspopup_expanded.uc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotiful/firefox-scripts/HEAD/src/chrome/scripts/editbookmarkspopup_expanded.uc.js -------------------------------------------------------------------------------- /src/chrome/scripts/favicon_in_urlbar.uc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotiful/firefox-scripts/HEAD/src/chrome/scripts/favicon_in_urlbar.uc.js -------------------------------------------------------------------------------- /src/chrome/scripts/restart-button.uc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotiful/firefox-scripts/HEAD/src/chrome/scripts/restart-button.uc.js -------------------------------------------------------------------------------- /src/chrome/userChrome.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotiful/firefox-scripts/HEAD/src/chrome/userChrome.css -------------------------------------------------------------------------------- /src/chrome/userChrome.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotiful/firefox-scripts/HEAD/src/chrome/userChrome.js -------------------------------------------------------------------------------- /src/chrome/userContent.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotiful/firefox-scripts/HEAD/src/chrome/userContent.css -------------------------------------------------------------------------------- /src/icons/.svgo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotiful/firefox-scripts/HEAD/src/icons/.svgo.json -------------------------------------------------------------------------------- /src/icons/.svgo.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotiful/firefox-scripts/HEAD/src/icons/.svgo.yml -------------------------------------------------------------------------------- /src/icons/.svgo2.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotiful/firefox-scripts/HEAD/src/icons/.svgo2.yml -------------------------------------------------------------------------------- /src/icons/delete.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotiful/firefox-scripts/HEAD/src/icons/delete.svg -------------------------------------------------------------------------------- /src/icons/vimrc-out.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotiful/firefox-scripts/HEAD/src/icons/vimrc-out.svg -------------------------------------------------------------------------------- /src/icons/vimrc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotiful/firefox-scripts/HEAD/src/icons/vimrc.svg -------------------------------------------------------------------------------- /src/user-base.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotiful/firefox-scripts/HEAD/src/user-base.js -------------------------------------------------------------------------------- /src/user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotiful/firefox-scripts/HEAD/src/user.js -------------------------------------------------------------------------------- /tasks/bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotiful/firefox-scripts/HEAD/tasks/bundle.js -------------------------------------------------------------------------------- /tasks/cfg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotiful/firefox-scripts/HEAD/tasks/cfg.js -------------------------------------------------------------------------------- /tasks/clean.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotiful/firefox-scripts/HEAD/tasks/clean.js -------------------------------------------------------------------------------- /tasks/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotiful/firefox-scripts/HEAD/tasks/index.js -------------------------------------------------------------------------------- /tasks/manifest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotiful/firefox-scripts/HEAD/tasks/manifest.js -------------------------------------------------------------------------------- /tasks/scripts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotiful/firefox-scripts/HEAD/tasks/scripts.js -------------------------------------------------------------------------------- /tasks/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotiful/firefox-scripts/HEAD/tasks/styles.js -------------------------------------------------------------------------------- /tasks/syncy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotiful/firefox-scripts/HEAD/tasks/syncy.js -------------------------------------------------------------------------------- /tasks/watch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotiful/firefox-scripts/HEAD/tasks/watch.js --------------------------------------------------------------------------------