├── .gitattributes ├── .github ├── dependabot.yml └── workflows │ └── lint-on-push-pr.yml ├── .gitignore ├── .husky └── pre-commit ├── LICENSE ├── assets └── images │ ├── badges │ └── zero-1.0 │ │ └── 88x31.png │ ├── icons │ ├── awesome │ │ └── shades │ │ │ ├── 400x200.png │ │ │ ├── black │ │ │ └── 400x200.png │ │ │ └── white │ │ │ └── 400x200.png │ ├── sites │ │ ├── amazon │ │ │ ├── black │ │ │ │ ├── icon16.png │ │ │ │ └── icon32.png │ │ │ ├── icon16.png │ │ │ ├── icon32.ico │ │ │ ├── icon32.png │ │ │ └── white │ │ │ │ ├── icon16.png │ │ │ │ └── icon32.png │ │ ├── brave │ │ │ ├── black │ │ │ │ ├── icon128.png │ │ │ │ ├── icon16.png │ │ │ │ ├── icon256.png │ │ │ │ ├── icon32.png │ │ │ │ ├── icon512.png │ │ │ │ ├── icon64.png │ │ │ │ └── icon950.png │ │ │ ├── icon128.png │ │ │ ├── icon16.png │ │ │ ├── icon256.png │ │ │ ├── icon32.png │ │ │ ├── icon48.png │ │ │ ├── icon512.png │ │ │ ├── icon64.png │ │ │ ├── icon950.png │ │ │ └── white │ │ │ │ ├── icon128.png │ │ │ │ ├── icon16.png │ │ │ │ ├── icon256.png │ │ │ │ ├── icon32.png │ │ │ │ ├── icon512.png │ │ │ │ ├── icon64.png │ │ │ │ └── icon950.png │ │ ├── chatgpt │ │ │ ├── black-on-white │ │ │ │ ├── icon189.png │ │ │ │ └── icon50.png │ │ │ ├── white-on-black │ │ │ │ ├── icon189.png │ │ │ │ └── icon50.png │ │ │ ├── white-on-blue-green │ │ │ │ ├── icon189.png │ │ │ │ └── icon50.png │ │ │ └── white-on-gray │ │ │ │ ├── icon189.png │ │ │ │ └── icon50.png │ │ ├── discord │ │ │ ├── black │ │ │ │ ├── icon128.png │ │ │ │ ├── icon16.png │ │ │ │ ├── icon256.png │ │ │ │ ├── icon32.png │ │ │ │ └── icon64.png │ │ │ ├── icon16.png │ │ │ ├── icon256.ico │ │ │ ├── icon256.png │ │ │ ├── icon32.png │ │ │ ├── icon48.png │ │ │ └── white │ │ │ │ ├── icon128.png │ │ │ │ ├── icon16.png │ │ │ │ ├── icon256.png │ │ │ │ ├── icon32.png │ │ │ │ └── icon64.png │ │ ├── duckduckgo │ │ │ ├── black │ │ │ │ ├── icon128.png │ │ │ │ ├── icon16.png │ │ │ │ ├── icon256.png │ │ │ │ ├── icon32.png │ │ │ │ └── icon64.png │ │ │ ├── icon128.png │ │ │ ├── icon16.png │ │ │ ├── icon256.png │ │ │ ├── icon32.png │ │ │ ├── icon48.png │ │ │ ├── icon64.png │ │ │ └── white │ │ │ │ ├── icon128.png │ │ │ │ ├── icon16.png │ │ │ │ ├── icon256.png │ │ │ │ ├── icon32.png │ │ │ │ └── icon64.png │ │ ├── github │ │ │ ├── black │ │ │ │ └── icon32.png │ │ │ └── white │ │ │ │ └── icon32.png │ │ ├── google │ │ │ ├── black │ │ │ │ └── icon32.png │ │ │ ├── icon32.png │ │ │ └── white │ │ │ │ └── icon32.png │ │ ├── just-eat │ │ │ ├── black │ │ │ │ ├── icon16.png │ │ │ │ └── icon32.png │ │ │ ├── icon16.png │ │ │ ├── icon32.ico │ │ │ ├── icon32.png │ │ │ └── white │ │ │ │ ├── icon16.png │ │ │ │ └── icon32.png │ │ └── youtube │ │ │ ├── black │ │ │ └── icon32.png │ │ │ ├── icon32.png │ │ │ └── white │ │ │ └── icon32.png │ └── symbols │ │ ├── cancel │ │ ├── black │ │ │ ├── icon128.png │ │ │ ├── icon16.png │ │ │ ├── icon256.png │ │ │ ├── icon32.png │ │ │ ├── icon512.png │ │ │ └── icon64.png │ │ └── white │ │ │ ├── icon128.png │ │ │ ├── icon16.png │ │ │ ├── icon256.png │ │ │ ├── icon32.png │ │ │ ├── icon512.png │ │ │ └── icon64.png │ │ ├── incognito │ │ ├── black │ │ │ ├── icon128.png │ │ │ ├── icon16.png │ │ │ ├── icon244.png │ │ │ ├── icon32.png │ │ │ ├── icon48.png │ │ │ └── icon64.png │ │ └── white │ │ │ ├── icon244.png │ │ │ └── icon32.png │ │ ├── link │ │ ├── black │ │ │ ├── icon128.png │ │ │ ├── icon16.png │ │ │ ├── icon256.png │ │ │ ├── icon32.png │ │ │ ├── icon474.png │ │ │ ├── icon48.png │ │ │ └── icon64.png │ │ └── white │ │ │ ├── icon128.png │ │ │ ├── icon16.png │ │ │ ├── icon256.png │ │ │ ├── icon32.png │ │ │ ├── icon474.png │ │ │ └── icon64.png │ │ ├── nav │ │ ├── black │ │ │ ├── icon128.png │ │ │ ├── icon16.png │ │ │ ├── icon216.png │ │ │ ├── icon32.png │ │ │ ├── icon48.png │ │ │ └── icon64.png │ │ └── white │ │ │ ├── icon128.png │ │ │ ├── icon16.png │ │ │ ├── icon216.png │ │ │ ├── icon32.png │ │ │ └── icon64.png │ │ ├── password │ │ ├── black │ │ │ ├── icon128.png │ │ │ ├── icon16.png │ │ │ ├── icon1846.png │ │ │ ├── icon256.png │ │ │ ├── icon32.png │ │ │ ├── icon48.png │ │ │ ├── icon512.png │ │ │ └── icon64.png │ │ └── white │ │ │ ├── icon1024.png │ │ │ ├── icon128.png │ │ │ ├── icon16.png │ │ │ ├── icon1846.png │ │ │ ├── icon256.png │ │ │ ├── icon32.png │ │ │ ├── icon512.png │ │ │ └── icon64.png │ │ ├── play │ │ ├── black │ │ │ ├── icon128.png │ │ │ ├── icon16.png │ │ │ ├── icon256.png │ │ │ ├── icon32.png │ │ │ ├── icon3595.png │ │ │ ├── icon48.png │ │ │ ├── icon512.png │ │ │ └── icon64.png │ │ └── white │ │ │ ├── icon1024.png │ │ │ ├── icon128.png │ │ │ ├── icon16.png │ │ │ ├── icon256.png │ │ │ ├── icon32.png │ │ │ ├── icon3595.png │ │ │ ├── icon512.png │ │ │ └── icon64.png │ │ ├── soundwaves │ │ ├── black │ │ │ ├── icon128.png │ │ │ ├── icon1460.png │ │ │ ├── icon16.png │ │ │ ├── icon256.png │ │ │ ├── icon32.png │ │ │ ├── icon48.png │ │ │ ├── icon512.png │ │ │ └── icon64.png │ │ └── white │ │ │ ├── icon1024.png │ │ │ ├── icon128.png │ │ │ ├── icon1460.png │ │ │ ├── icon16.png │ │ │ ├── icon256.png │ │ │ ├── icon32.png │ │ │ ├── icon512.png │ │ │ └── icon64.png │ │ └── translate │ │ ├── black │ │ ├── icon1118.png │ │ ├── icon128.png │ │ ├── icon16.png │ │ ├── icon256.png │ │ ├── icon32.png │ │ ├── icon48.png │ │ ├── icon512.png │ │ └── icon64.png │ │ └── white │ │ ├── icon1024.png │ │ ├── icon1118.png │ │ ├── icon128.png │ │ ├── icon16.png │ │ ├── icon256.png │ │ ├── icon32.png │ │ ├── icon512.png │ │ └── icon64.png │ ├── screenshots │ └── scripts │ │ ├── adsbypasser.png │ │ ├── endless-google.png │ │ ├── github-make-tooltips.png │ │ ├── github-static-time.gif │ │ ├── github-toggle-wiki-sidebar.gif │ │ ├── immersive-translate.png │ │ ├── linkify-plus-plus.png │ │ ├── pagetual.png │ │ ├── picviewer-ce+.gif │ │ ├── select-text-inside-a-link-like-opera.png │ │ ├── share-google-slides-controls.png │ │ ├── show-password-onmouseover.gif │ │ ├── undiscord.gif │ │ └── youtube-commenter-names.png │ └── separators │ ├── gradient-aqua.png │ ├── rainbow-blue-to-red.png │ └── rainbow-red-to-blue.png ├── docs ├── CONTRIBUTING.md └── README.md ├── eslint.config.mjs ├── package-lock.json └── package.json /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto eol=lf 2 | -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- 1 | version: 2 2 | updates: 3 | 4 | - package-ecosystem: npm 5 | directory: / 6 | schedule: 7 | interval: daily 8 | groups: 9 | dev-dependencies: 10 | dependency-type: development 11 | -------------------------------------------------------------------------------- /.github/workflows/lint-on-push-pr.yml: -------------------------------------------------------------------------------- 1 | name: Lint pushes/PRs 2 | on: [push, pull_request] 3 | 4 | permissions: 5 | contents: read 6 | 7 | jobs: 8 | 9 | eslint: 10 | name: ESLint 11 | runs-on: ubuntu-latest 12 | steps: 13 | 14 | - name: Checkout repository code 15 | uses: actions/checkout@v4 16 | 17 | - name: Set up Node.js 18 | uses: actions/setup-node@v4 19 | with: 20 | node-version: 'lts/*' 21 | 22 | - name: Install dependencies 23 | run: npm ci 24 | 25 | - name: Run ESLint 26 | run: npm run lint 27 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *cache 2 | node_modules/ 3 | -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | # Init UI colors 4 | NC="\033[0m" # no color 5 | BR="\033[1;91m" # bright red 6 | BY="\033[1;33m" # bright yellow 7 | 8 | # Run ESLint 9 | echo -e "\n${BY}Running ESLint...${NC}" 10 | if npm ls -g eslint &> /dev/null || npm ls eslint &> /dev/null ; then 11 | npm run lint 12 | else 13 | PROJECT_ROOT=$( 14 | cd "$(dirname "$0")/.." && # nav to root 15 | [ "$OSTYPE" == "msys" ] && pwd -W || pwd # get absolute path 16 | ) 17 | echo -e "\n${BR}Warning: ESLint not installed${NC}" 18 | echo -e " To add missing dependencies, run 'npm install' from" 19 | echo -e " $PROJECT_ROOT\n" 20 | fi 21 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | CC0 1.0 Universal 2 | 3 | Statement of Purpose 4 | 5 | The laws of most jurisdictions throughout the world automatically confer 6 | exclusive Copyright and Related Rights (defined below) upon the creator and 7 | subsequent owner(s) (each and all, an "owner") of an original work of 8 | authorship and/or a database (each, a "Work"). 9 | 10 | Certain owners wish to permanently relinquish those rights to a Work for the 11 | purpose of contributing to a commons of creative, cultural and scientific 12 | works ("Commons") that the public can reliably and without fear of later 13 | claims of infringement build upon, modify, incorporate in other works, reuse 14 | and redistribute as freely as possible in any form whatsoever and for any 15 | purposes, including without limitation commercial purposes. These owners may 16 | contribute to the Commons to promote the ideal of a free culture and the 17 | further production of creative, cultural and scientific works, or to gain 18 | reputation or greater distribution for their Work in part through the use and 19 | efforts of others. 20 | 21 | For these and/or other purposes and motivations, and without any expectation 22 | of additional consideration or compensation, the person associating CC0 with a 23 | Work (the "Affirmer"), to the extent that he or she is an owner of Copyright 24 | and Related Rights in the Work, voluntarily elects to apply CC0 to the Work 25 | and publicly distribute the Work under its terms, with knowledge of his or her 26 | Copyright and Related Rights in the Work and the meaning and intended legal 27 | effect of CC0 on those rights. 28 | 29 | 1. Copyright and Related Rights. A Work made available under CC0 may be 30 | protected by copyright and related or neighboring rights ("Copyright and 31 | Related Rights"). Copyright and Related Rights include, but are not limited 32 | to, the following: 33 | 34 | i. the right to reproduce, adapt, distribute, perform, display, communicate, 35 | and translate a Work; 36 | 37 | ii. moral rights retained by the original author(s) and/or performer(s); 38 | 39 | iii. publicity and privacy rights pertaining to a person's image or likeness 40 | depicted in a Work; 41 | 42 | iv. rights protecting against unfair competition in regards to a Work, 43 | subject to the limitations in paragraph 4(a), below; 44 | 45 | v. rights protecting the extraction, dissemination, use and reuse of data in 46 | a Work; 47 | 48 | vi. database rights (such as those arising under Directive 96/9/EC of the 49 | European Parliament and of the Council of 11 March 1996 on the legal 50 | protection of databases, and under any national implementation thereof, 51 | including any amended or successor version of such directive); and 52 | 53 | vii. other similar, equivalent or corresponding rights throughout the world 54 | based on applicable law or treaty, and any national implementations thereof. 55 | 56 | 2. Waiver. To the greatest extent permitted by, but not in contravention of, 57 | applicable law, Affirmer hereby overtly, fully, permanently, irrevocably and 58 | unconditionally waives, abandons, and surrenders all of Affirmer's Copyright 59 | and Related Rights and associated claims and causes of action, whether now 60 | known or unknown (including existing as well as future claims and causes of 61 | action), in the Work (i) in all territories worldwide, (ii) for the maximum 62 | duration provided by applicable law or treaty (including future time 63 | extensions), (iii) in any current or future medium and for any number of 64 | copies, and (iv) for any purpose whatsoever, including without limitation 65 | commercial, advertising or promotional purposes (the "Waiver"). Affirmer makes 66 | the Waiver for the benefit of each member of the public at large and to the 67 | detriment of Affirmer's heirs and successors, fully intending that such Waiver 68 | shall not be subject to revocation, rescission, cancellation, termination, or 69 | any other legal or equitable action to disrupt the quiet enjoyment of the Work 70 | by the public as contemplated by Affirmer's express Statement of Purpose. 71 | 72 | 3. Public License Fallback. Should any part of the Waiver for any reason be 73 | judged legally invalid or ineffective under applicable law, then the Waiver 74 | shall be preserved to the maximum extent permitted taking into account 75 | Affirmer's express Statement of Purpose. In addition, to the extent the Waiver 76 | is so judged Affirmer hereby grants to each affected person a royalty-free, 77 | non transferable, non sublicensable, non exclusive, irrevocable and 78 | unconditional license to exercise Affirmer's Copyright and Related Rights in 79 | the Work (i) in all territories worldwide, (ii) for the maximum duration 80 | provided by applicable law or treaty (including future time extensions), (iii) 81 | in any current or future medium and for any number of copies, and (iv) for any 82 | purpose whatsoever, including without limitation commercial, advertising or 83 | promotional purposes (the "License"). The License shall be deemed effective as 84 | of the date CC0 was applied by Affirmer to the Work. Should any part of the 85 | License for any reason be judged legally invalid or ineffective under 86 | applicable law, such partial invalidity or ineffectiveness shall not 87 | invalidate the remainder of the License, and in such case Affirmer hereby 88 | affirms that he or she will not (i) exercise any of his or her remaining 89 | Copyright and Related Rights in the Work or (ii) assert any associated claims 90 | and causes of action with respect to the Work, in either case contrary to 91 | Affirmer's express Statement of Purpose. 92 | 93 | 4. Limitations and Disclaimers. 94 | 95 | a. No trademark or patent rights held by Affirmer are waived, abandoned, 96 | surrendered, licensed or otherwise affected by this document. 97 | 98 | b. Affirmer offers the Work as-is and makes no representations or warranties 99 | of any kind concerning the Work, express, implied, statutory or otherwise, 100 | including without limitation warranties of title, merchantability, fitness 101 | for a particular purpose, non infringement, or the absence of latent or 102 | other defects, accuracy, or the present or absence of errors, whether or not 103 | discoverable, all to the greatest extent permissible under applicable law. 104 | 105 | c. Affirmer disclaims responsibility for clearing rights of other persons 106 | that may apply to the Work or any use thereof, including without limitation 107 | any person's Copyright and Related Rights in the Work. Further, Affirmer 108 | disclaims responsibility for obtaining any necessary consents, permissions 109 | or other rights required for any use of the Work. 110 | 111 | d. Affirmer understands and acknowledges that Creative Commons is not a 112 | party to this document and has no duty or obligation with respect to this 113 | CC0 or use of the Work. 114 | 115 | For more information, please see 116 | 117 | -------------------------------------------------------------------------------- /assets/images/badges/zero-1.0/88x31.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesome-scripts/awesome-userscripts/83b9a3db0ac17f6d1a1ff9eb898fef8b637168a8/assets/images/badges/zero-1.0/88x31.png -------------------------------------------------------------------------------- /assets/images/icons/awesome/shades/400x200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesome-scripts/awesome-userscripts/83b9a3db0ac17f6d1a1ff9eb898fef8b637168a8/assets/images/icons/awesome/shades/400x200.png -------------------------------------------------------------------------------- /assets/images/icons/awesome/shades/black/400x200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesome-scripts/awesome-userscripts/83b9a3db0ac17f6d1a1ff9eb898fef8b637168a8/assets/images/icons/awesome/shades/black/400x200.png -------------------------------------------------------------------------------- /assets/images/icons/awesome/shades/white/400x200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesome-scripts/awesome-userscripts/83b9a3db0ac17f6d1a1ff9eb898fef8b637168a8/assets/images/icons/awesome/shades/white/400x200.png -------------------------------------------------------------------------------- /assets/images/icons/sites/amazon/black/icon16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesome-scripts/awesome-userscripts/83b9a3db0ac17f6d1a1ff9eb898fef8b637168a8/assets/images/icons/sites/amazon/black/icon16.png -------------------------------------------------------------------------------- /assets/images/icons/sites/amazon/black/icon32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesome-scripts/awesome-userscripts/83b9a3db0ac17f6d1a1ff9eb898fef8b637168a8/assets/images/icons/sites/amazon/black/icon32.png -------------------------------------------------------------------------------- /assets/images/icons/sites/amazon/icon16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesome-scripts/awesome-userscripts/83b9a3db0ac17f6d1a1ff9eb898fef8b637168a8/assets/images/icons/sites/amazon/icon16.png -------------------------------------------------------------------------------- /assets/images/icons/sites/amazon/icon32.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesome-scripts/awesome-userscripts/83b9a3db0ac17f6d1a1ff9eb898fef8b637168a8/assets/images/icons/sites/amazon/icon32.ico -------------------------------------------------------------------------------- /assets/images/icons/sites/amazon/icon32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesome-scripts/awesome-userscripts/83b9a3db0ac17f6d1a1ff9eb898fef8b637168a8/assets/images/icons/sites/amazon/icon32.png -------------------------------------------------------------------------------- /assets/images/icons/sites/amazon/white/icon16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesome-scripts/awesome-userscripts/83b9a3db0ac17f6d1a1ff9eb898fef8b637168a8/assets/images/icons/sites/amazon/white/icon16.png -------------------------------------------------------------------------------- /assets/images/icons/sites/amazon/white/icon32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesome-scripts/awesome-userscripts/83b9a3db0ac17f6d1a1ff9eb898fef8b637168a8/assets/images/icons/sites/amazon/white/icon32.png -------------------------------------------------------------------------------- /assets/images/icons/sites/brave/black/icon128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesome-scripts/awesome-userscripts/83b9a3db0ac17f6d1a1ff9eb898fef8b637168a8/assets/images/icons/sites/brave/black/icon128.png -------------------------------------------------------------------------------- /assets/images/icons/sites/brave/black/icon16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesome-scripts/awesome-userscripts/83b9a3db0ac17f6d1a1ff9eb898fef8b637168a8/assets/images/icons/sites/brave/black/icon16.png -------------------------------------------------------------------------------- /assets/images/icons/sites/brave/black/icon256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesome-scripts/awesome-userscripts/83b9a3db0ac17f6d1a1ff9eb898fef8b637168a8/assets/images/icons/sites/brave/black/icon256.png -------------------------------------------------------------------------------- /assets/images/icons/sites/brave/black/icon32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesome-scripts/awesome-userscripts/83b9a3db0ac17f6d1a1ff9eb898fef8b637168a8/assets/images/icons/sites/brave/black/icon32.png -------------------------------------------------------------------------------- /assets/images/icons/sites/brave/black/icon512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesome-scripts/awesome-userscripts/83b9a3db0ac17f6d1a1ff9eb898fef8b637168a8/assets/images/icons/sites/brave/black/icon512.png -------------------------------------------------------------------------------- /assets/images/icons/sites/brave/black/icon64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesome-scripts/awesome-userscripts/83b9a3db0ac17f6d1a1ff9eb898fef8b637168a8/assets/images/icons/sites/brave/black/icon64.png -------------------------------------------------------------------------------- /assets/images/icons/sites/brave/black/icon950.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesome-scripts/awesome-userscripts/83b9a3db0ac17f6d1a1ff9eb898fef8b637168a8/assets/images/icons/sites/brave/black/icon950.png -------------------------------------------------------------------------------- /assets/images/icons/sites/brave/icon128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesome-scripts/awesome-userscripts/83b9a3db0ac17f6d1a1ff9eb898fef8b637168a8/assets/images/icons/sites/brave/icon128.png -------------------------------------------------------------------------------- /assets/images/icons/sites/brave/icon16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesome-scripts/awesome-userscripts/83b9a3db0ac17f6d1a1ff9eb898fef8b637168a8/assets/images/icons/sites/brave/icon16.png -------------------------------------------------------------------------------- /assets/images/icons/sites/brave/icon256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesome-scripts/awesome-userscripts/83b9a3db0ac17f6d1a1ff9eb898fef8b637168a8/assets/images/icons/sites/brave/icon256.png -------------------------------------------------------------------------------- /assets/images/icons/sites/brave/icon32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesome-scripts/awesome-userscripts/83b9a3db0ac17f6d1a1ff9eb898fef8b637168a8/assets/images/icons/sites/brave/icon32.png -------------------------------------------------------------------------------- /assets/images/icons/sites/brave/icon48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesome-scripts/awesome-userscripts/83b9a3db0ac17f6d1a1ff9eb898fef8b637168a8/assets/images/icons/sites/brave/icon48.png -------------------------------------------------------------------------------- /assets/images/icons/sites/brave/icon512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesome-scripts/awesome-userscripts/83b9a3db0ac17f6d1a1ff9eb898fef8b637168a8/assets/images/icons/sites/brave/icon512.png -------------------------------------------------------------------------------- /assets/images/icons/sites/brave/icon64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesome-scripts/awesome-userscripts/83b9a3db0ac17f6d1a1ff9eb898fef8b637168a8/assets/images/icons/sites/brave/icon64.png -------------------------------------------------------------------------------- /assets/images/icons/sites/brave/icon950.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesome-scripts/awesome-userscripts/83b9a3db0ac17f6d1a1ff9eb898fef8b637168a8/assets/images/icons/sites/brave/icon950.png -------------------------------------------------------------------------------- /assets/images/icons/sites/brave/white/icon128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesome-scripts/awesome-userscripts/83b9a3db0ac17f6d1a1ff9eb898fef8b637168a8/assets/images/icons/sites/brave/white/icon128.png -------------------------------------------------------------------------------- /assets/images/icons/sites/brave/white/icon16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesome-scripts/awesome-userscripts/83b9a3db0ac17f6d1a1ff9eb898fef8b637168a8/assets/images/icons/sites/brave/white/icon16.png -------------------------------------------------------------------------------- /assets/images/icons/sites/brave/white/icon256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesome-scripts/awesome-userscripts/83b9a3db0ac17f6d1a1ff9eb898fef8b637168a8/assets/images/icons/sites/brave/white/icon256.png -------------------------------------------------------------------------------- /assets/images/icons/sites/brave/white/icon32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesome-scripts/awesome-userscripts/83b9a3db0ac17f6d1a1ff9eb898fef8b637168a8/assets/images/icons/sites/brave/white/icon32.png -------------------------------------------------------------------------------- /assets/images/icons/sites/brave/white/icon512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesome-scripts/awesome-userscripts/83b9a3db0ac17f6d1a1ff9eb898fef8b637168a8/assets/images/icons/sites/brave/white/icon512.png -------------------------------------------------------------------------------- /assets/images/icons/sites/brave/white/icon64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesome-scripts/awesome-userscripts/83b9a3db0ac17f6d1a1ff9eb898fef8b637168a8/assets/images/icons/sites/brave/white/icon64.png -------------------------------------------------------------------------------- /assets/images/icons/sites/brave/white/icon950.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesome-scripts/awesome-userscripts/83b9a3db0ac17f6d1a1ff9eb898fef8b637168a8/assets/images/icons/sites/brave/white/icon950.png -------------------------------------------------------------------------------- /assets/images/icons/sites/chatgpt/black-on-white/icon189.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesome-scripts/awesome-userscripts/83b9a3db0ac17f6d1a1ff9eb898fef8b637168a8/assets/images/icons/sites/chatgpt/black-on-white/icon189.png -------------------------------------------------------------------------------- /assets/images/icons/sites/chatgpt/black-on-white/icon50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesome-scripts/awesome-userscripts/83b9a3db0ac17f6d1a1ff9eb898fef8b637168a8/assets/images/icons/sites/chatgpt/black-on-white/icon50.png -------------------------------------------------------------------------------- /assets/images/icons/sites/chatgpt/white-on-black/icon189.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesome-scripts/awesome-userscripts/83b9a3db0ac17f6d1a1ff9eb898fef8b637168a8/assets/images/icons/sites/chatgpt/white-on-black/icon189.png -------------------------------------------------------------------------------- /assets/images/icons/sites/chatgpt/white-on-black/icon50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesome-scripts/awesome-userscripts/83b9a3db0ac17f6d1a1ff9eb898fef8b637168a8/assets/images/icons/sites/chatgpt/white-on-black/icon50.png -------------------------------------------------------------------------------- /assets/images/icons/sites/chatgpt/white-on-blue-green/icon189.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesome-scripts/awesome-userscripts/83b9a3db0ac17f6d1a1ff9eb898fef8b637168a8/assets/images/icons/sites/chatgpt/white-on-blue-green/icon189.png -------------------------------------------------------------------------------- /assets/images/icons/sites/chatgpt/white-on-blue-green/icon50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesome-scripts/awesome-userscripts/83b9a3db0ac17f6d1a1ff9eb898fef8b637168a8/assets/images/icons/sites/chatgpt/white-on-blue-green/icon50.png -------------------------------------------------------------------------------- /assets/images/icons/sites/chatgpt/white-on-gray/icon189.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesome-scripts/awesome-userscripts/83b9a3db0ac17f6d1a1ff9eb898fef8b637168a8/assets/images/icons/sites/chatgpt/white-on-gray/icon189.png -------------------------------------------------------------------------------- /assets/images/icons/sites/chatgpt/white-on-gray/icon50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesome-scripts/awesome-userscripts/83b9a3db0ac17f6d1a1ff9eb898fef8b637168a8/assets/images/icons/sites/chatgpt/white-on-gray/icon50.png -------------------------------------------------------------------------------- /assets/images/icons/sites/discord/black/icon128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesome-scripts/awesome-userscripts/83b9a3db0ac17f6d1a1ff9eb898fef8b637168a8/assets/images/icons/sites/discord/black/icon128.png -------------------------------------------------------------------------------- /assets/images/icons/sites/discord/black/icon16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesome-scripts/awesome-userscripts/83b9a3db0ac17f6d1a1ff9eb898fef8b637168a8/assets/images/icons/sites/discord/black/icon16.png -------------------------------------------------------------------------------- /assets/images/icons/sites/discord/black/icon256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesome-scripts/awesome-userscripts/83b9a3db0ac17f6d1a1ff9eb898fef8b637168a8/assets/images/icons/sites/discord/black/icon256.png -------------------------------------------------------------------------------- /assets/images/icons/sites/discord/black/icon32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesome-scripts/awesome-userscripts/83b9a3db0ac17f6d1a1ff9eb898fef8b637168a8/assets/images/icons/sites/discord/black/icon32.png -------------------------------------------------------------------------------- /assets/images/icons/sites/discord/black/icon64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesome-scripts/awesome-userscripts/83b9a3db0ac17f6d1a1ff9eb898fef8b637168a8/assets/images/icons/sites/discord/black/icon64.png -------------------------------------------------------------------------------- /assets/images/icons/sites/discord/icon16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesome-scripts/awesome-userscripts/83b9a3db0ac17f6d1a1ff9eb898fef8b637168a8/assets/images/icons/sites/discord/icon16.png -------------------------------------------------------------------------------- /assets/images/icons/sites/discord/icon256.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesome-scripts/awesome-userscripts/83b9a3db0ac17f6d1a1ff9eb898fef8b637168a8/assets/images/icons/sites/discord/icon256.ico -------------------------------------------------------------------------------- /assets/images/icons/sites/discord/icon256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesome-scripts/awesome-userscripts/83b9a3db0ac17f6d1a1ff9eb898fef8b637168a8/assets/images/icons/sites/discord/icon256.png -------------------------------------------------------------------------------- /assets/images/icons/sites/discord/icon32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesome-scripts/awesome-userscripts/83b9a3db0ac17f6d1a1ff9eb898fef8b637168a8/assets/images/icons/sites/discord/icon32.png -------------------------------------------------------------------------------- /assets/images/icons/sites/discord/icon48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesome-scripts/awesome-userscripts/83b9a3db0ac17f6d1a1ff9eb898fef8b637168a8/assets/images/icons/sites/discord/icon48.png -------------------------------------------------------------------------------- /assets/images/icons/sites/discord/white/icon128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesome-scripts/awesome-userscripts/83b9a3db0ac17f6d1a1ff9eb898fef8b637168a8/assets/images/icons/sites/discord/white/icon128.png -------------------------------------------------------------------------------- /assets/images/icons/sites/discord/white/icon16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesome-scripts/awesome-userscripts/83b9a3db0ac17f6d1a1ff9eb898fef8b637168a8/assets/images/icons/sites/discord/white/icon16.png -------------------------------------------------------------------------------- /assets/images/icons/sites/discord/white/icon256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesome-scripts/awesome-userscripts/83b9a3db0ac17f6d1a1ff9eb898fef8b637168a8/assets/images/icons/sites/discord/white/icon256.png -------------------------------------------------------------------------------- /assets/images/icons/sites/discord/white/icon32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesome-scripts/awesome-userscripts/83b9a3db0ac17f6d1a1ff9eb898fef8b637168a8/assets/images/icons/sites/discord/white/icon32.png -------------------------------------------------------------------------------- /assets/images/icons/sites/discord/white/icon64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesome-scripts/awesome-userscripts/83b9a3db0ac17f6d1a1ff9eb898fef8b637168a8/assets/images/icons/sites/discord/white/icon64.png -------------------------------------------------------------------------------- /assets/images/icons/sites/duckduckgo/black/icon128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesome-scripts/awesome-userscripts/83b9a3db0ac17f6d1a1ff9eb898fef8b637168a8/assets/images/icons/sites/duckduckgo/black/icon128.png -------------------------------------------------------------------------------- /assets/images/icons/sites/duckduckgo/black/icon16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesome-scripts/awesome-userscripts/83b9a3db0ac17f6d1a1ff9eb898fef8b637168a8/assets/images/icons/sites/duckduckgo/black/icon16.png -------------------------------------------------------------------------------- /assets/images/icons/sites/duckduckgo/black/icon256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesome-scripts/awesome-userscripts/83b9a3db0ac17f6d1a1ff9eb898fef8b637168a8/assets/images/icons/sites/duckduckgo/black/icon256.png -------------------------------------------------------------------------------- /assets/images/icons/sites/duckduckgo/black/icon32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesome-scripts/awesome-userscripts/83b9a3db0ac17f6d1a1ff9eb898fef8b637168a8/assets/images/icons/sites/duckduckgo/black/icon32.png -------------------------------------------------------------------------------- /assets/images/icons/sites/duckduckgo/black/icon64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesome-scripts/awesome-userscripts/83b9a3db0ac17f6d1a1ff9eb898fef8b637168a8/assets/images/icons/sites/duckduckgo/black/icon64.png -------------------------------------------------------------------------------- /assets/images/icons/sites/duckduckgo/icon128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesome-scripts/awesome-userscripts/83b9a3db0ac17f6d1a1ff9eb898fef8b637168a8/assets/images/icons/sites/duckduckgo/icon128.png -------------------------------------------------------------------------------- /assets/images/icons/sites/duckduckgo/icon16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesome-scripts/awesome-userscripts/83b9a3db0ac17f6d1a1ff9eb898fef8b637168a8/assets/images/icons/sites/duckduckgo/icon16.png -------------------------------------------------------------------------------- /assets/images/icons/sites/duckduckgo/icon256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesome-scripts/awesome-userscripts/83b9a3db0ac17f6d1a1ff9eb898fef8b637168a8/assets/images/icons/sites/duckduckgo/icon256.png -------------------------------------------------------------------------------- /assets/images/icons/sites/duckduckgo/icon32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesome-scripts/awesome-userscripts/83b9a3db0ac17f6d1a1ff9eb898fef8b637168a8/assets/images/icons/sites/duckduckgo/icon32.png -------------------------------------------------------------------------------- /assets/images/icons/sites/duckduckgo/icon48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesome-scripts/awesome-userscripts/83b9a3db0ac17f6d1a1ff9eb898fef8b637168a8/assets/images/icons/sites/duckduckgo/icon48.png -------------------------------------------------------------------------------- /assets/images/icons/sites/duckduckgo/icon64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesome-scripts/awesome-userscripts/83b9a3db0ac17f6d1a1ff9eb898fef8b637168a8/assets/images/icons/sites/duckduckgo/icon64.png -------------------------------------------------------------------------------- /assets/images/icons/sites/duckduckgo/white/icon128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesome-scripts/awesome-userscripts/83b9a3db0ac17f6d1a1ff9eb898fef8b637168a8/assets/images/icons/sites/duckduckgo/white/icon128.png -------------------------------------------------------------------------------- /assets/images/icons/sites/duckduckgo/white/icon16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesome-scripts/awesome-userscripts/83b9a3db0ac17f6d1a1ff9eb898fef8b637168a8/assets/images/icons/sites/duckduckgo/white/icon16.png -------------------------------------------------------------------------------- /assets/images/icons/sites/duckduckgo/white/icon256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesome-scripts/awesome-userscripts/83b9a3db0ac17f6d1a1ff9eb898fef8b637168a8/assets/images/icons/sites/duckduckgo/white/icon256.png -------------------------------------------------------------------------------- /assets/images/icons/sites/duckduckgo/white/icon32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesome-scripts/awesome-userscripts/83b9a3db0ac17f6d1a1ff9eb898fef8b637168a8/assets/images/icons/sites/duckduckgo/white/icon32.png -------------------------------------------------------------------------------- /assets/images/icons/sites/duckduckgo/white/icon64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesome-scripts/awesome-userscripts/83b9a3db0ac17f6d1a1ff9eb898fef8b637168a8/assets/images/icons/sites/duckduckgo/white/icon64.png -------------------------------------------------------------------------------- /assets/images/icons/sites/github/black/icon32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesome-scripts/awesome-userscripts/83b9a3db0ac17f6d1a1ff9eb898fef8b637168a8/assets/images/icons/sites/github/black/icon32.png -------------------------------------------------------------------------------- /assets/images/icons/sites/github/white/icon32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesome-scripts/awesome-userscripts/83b9a3db0ac17f6d1a1ff9eb898fef8b637168a8/assets/images/icons/sites/github/white/icon32.png -------------------------------------------------------------------------------- /assets/images/icons/sites/google/black/icon32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesome-scripts/awesome-userscripts/83b9a3db0ac17f6d1a1ff9eb898fef8b637168a8/assets/images/icons/sites/google/black/icon32.png -------------------------------------------------------------------------------- /assets/images/icons/sites/google/icon32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesome-scripts/awesome-userscripts/83b9a3db0ac17f6d1a1ff9eb898fef8b637168a8/assets/images/icons/sites/google/icon32.png -------------------------------------------------------------------------------- /assets/images/icons/sites/google/white/icon32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesome-scripts/awesome-userscripts/83b9a3db0ac17f6d1a1ff9eb898fef8b637168a8/assets/images/icons/sites/google/white/icon32.png -------------------------------------------------------------------------------- /assets/images/icons/sites/just-eat/black/icon16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesome-scripts/awesome-userscripts/83b9a3db0ac17f6d1a1ff9eb898fef8b637168a8/assets/images/icons/sites/just-eat/black/icon16.png -------------------------------------------------------------------------------- /assets/images/icons/sites/just-eat/black/icon32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesome-scripts/awesome-userscripts/83b9a3db0ac17f6d1a1ff9eb898fef8b637168a8/assets/images/icons/sites/just-eat/black/icon32.png -------------------------------------------------------------------------------- /assets/images/icons/sites/just-eat/icon16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesome-scripts/awesome-userscripts/83b9a3db0ac17f6d1a1ff9eb898fef8b637168a8/assets/images/icons/sites/just-eat/icon16.png -------------------------------------------------------------------------------- /assets/images/icons/sites/just-eat/icon32.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesome-scripts/awesome-userscripts/83b9a3db0ac17f6d1a1ff9eb898fef8b637168a8/assets/images/icons/sites/just-eat/icon32.ico -------------------------------------------------------------------------------- /assets/images/icons/sites/just-eat/icon32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesome-scripts/awesome-userscripts/83b9a3db0ac17f6d1a1ff9eb898fef8b637168a8/assets/images/icons/sites/just-eat/icon32.png -------------------------------------------------------------------------------- /assets/images/icons/sites/just-eat/white/icon16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesome-scripts/awesome-userscripts/83b9a3db0ac17f6d1a1ff9eb898fef8b637168a8/assets/images/icons/sites/just-eat/white/icon16.png -------------------------------------------------------------------------------- /assets/images/icons/sites/just-eat/white/icon32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesome-scripts/awesome-userscripts/83b9a3db0ac17f6d1a1ff9eb898fef8b637168a8/assets/images/icons/sites/just-eat/white/icon32.png -------------------------------------------------------------------------------- /assets/images/icons/sites/youtube/black/icon32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesome-scripts/awesome-userscripts/83b9a3db0ac17f6d1a1ff9eb898fef8b637168a8/assets/images/icons/sites/youtube/black/icon32.png -------------------------------------------------------------------------------- /assets/images/icons/sites/youtube/icon32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesome-scripts/awesome-userscripts/83b9a3db0ac17f6d1a1ff9eb898fef8b637168a8/assets/images/icons/sites/youtube/icon32.png -------------------------------------------------------------------------------- /assets/images/icons/sites/youtube/white/icon32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesome-scripts/awesome-userscripts/83b9a3db0ac17f6d1a1ff9eb898fef8b637168a8/assets/images/icons/sites/youtube/white/icon32.png -------------------------------------------------------------------------------- /assets/images/icons/symbols/cancel/black/icon128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesome-scripts/awesome-userscripts/83b9a3db0ac17f6d1a1ff9eb898fef8b637168a8/assets/images/icons/symbols/cancel/black/icon128.png -------------------------------------------------------------------------------- /assets/images/icons/symbols/cancel/black/icon16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesome-scripts/awesome-userscripts/83b9a3db0ac17f6d1a1ff9eb898fef8b637168a8/assets/images/icons/symbols/cancel/black/icon16.png -------------------------------------------------------------------------------- /assets/images/icons/symbols/cancel/black/icon256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesome-scripts/awesome-userscripts/83b9a3db0ac17f6d1a1ff9eb898fef8b637168a8/assets/images/icons/symbols/cancel/black/icon256.png -------------------------------------------------------------------------------- /assets/images/icons/symbols/cancel/black/icon32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesome-scripts/awesome-userscripts/83b9a3db0ac17f6d1a1ff9eb898fef8b637168a8/assets/images/icons/symbols/cancel/black/icon32.png -------------------------------------------------------------------------------- /assets/images/icons/symbols/cancel/black/icon512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesome-scripts/awesome-userscripts/83b9a3db0ac17f6d1a1ff9eb898fef8b637168a8/assets/images/icons/symbols/cancel/black/icon512.png -------------------------------------------------------------------------------- /assets/images/icons/symbols/cancel/black/icon64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesome-scripts/awesome-userscripts/83b9a3db0ac17f6d1a1ff9eb898fef8b637168a8/assets/images/icons/symbols/cancel/black/icon64.png -------------------------------------------------------------------------------- /assets/images/icons/symbols/cancel/white/icon128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesome-scripts/awesome-userscripts/83b9a3db0ac17f6d1a1ff9eb898fef8b637168a8/assets/images/icons/symbols/cancel/white/icon128.png -------------------------------------------------------------------------------- /assets/images/icons/symbols/cancel/white/icon16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesome-scripts/awesome-userscripts/83b9a3db0ac17f6d1a1ff9eb898fef8b637168a8/assets/images/icons/symbols/cancel/white/icon16.png -------------------------------------------------------------------------------- /assets/images/icons/symbols/cancel/white/icon256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesome-scripts/awesome-userscripts/83b9a3db0ac17f6d1a1ff9eb898fef8b637168a8/assets/images/icons/symbols/cancel/white/icon256.png -------------------------------------------------------------------------------- /assets/images/icons/symbols/cancel/white/icon32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesome-scripts/awesome-userscripts/83b9a3db0ac17f6d1a1ff9eb898fef8b637168a8/assets/images/icons/symbols/cancel/white/icon32.png -------------------------------------------------------------------------------- /assets/images/icons/symbols/cancel/white/icon512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesome-scripts/awesome-userscripts/83b9a3db0ac17f6d1a1ff9eb898fef8b637168a8/assets/images/icons/symbols/cancel/white/icon512.png -------------------------------------------------------------------------------- /assets/images/icons/symbols/cancel/white/icon64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesome-scripts/awesome-userscripts/83b9a3db0ac17f6d1a1ff9eb898fef8b637168a8/assets/images/icons/symbols/cancel/white/icon64.png -------------------------------------------------------------------------------- /assets/images/icons/symbols/incognito/black/icon128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesome-scripts/awesome-userscripts/83b9a3db0ac17f6d1a1ff9eb898fef8b637168a8/assets/images/icons/symbols/incognito/black/icon128.png -------------------------------------------------------------------------------- /assets/images/icons/symbols/incognito/black/icon16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesome-scripts/awesome-userscripts/83b9a3db0ac17f6d1a1ff9eb898fef8b637168a8/assets/images/icons/symbols/incognito/black/icon16.png -------------------------------------------------------------------------------- /assets/images/icons/symbols/incognito/black/icon244.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesome-scripts/awesome-userscripts/83b9a3db0ac17f6d1a1ff9eb898fef8b637168a8/assets/images/icons/symbols/incognito/black/icon244.png -------------------------------------------------------------------------------- /assets/images/icons/symbols/incognito/black/icon32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesome-scripts/awesome-userscripts/83b9a3db0ac17f6d1a1ff9eb898fef8b637168a8/assets/images/icons/symbols/incognito/black/icon32.png -------------------------------------------------------------------------------- /assets/images/icons/symbols/incognito/black/icon48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesome-scripts/awesome-userscripts/83b9a3db0ac17f6d1a1ff9eb898fef8b637168a8/assets/images/icons/symbols/incognito/black/icon48.png -------------------------------------------------------------------------------- /assets/images/icons/symbols/incognito/black/icon64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesome-scripts/awesome-userscripts/83b9a3db0ac17f6d1a1ff9eb898fef8b637168a8/assets/images/icons/symbols/incognito/black/icon64.png -------------------------------------------------------------------------------- /assets/images/icons/symbols/incognito/white/icon244.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesome-scripts/awesome-userscripts/83b9a3db0ac17f6d1a1ff9eb898fef8b637168a8/assets/images/icons/symbols/incognito/white/icon244.png -------------------------------------------------------------------------------- /assets/images/icons/symbols/incognito/white/icon32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesome-scripts/awesome-userscripts/83b9a3db0ac17f6d1a1ff9eb898fef8b637168a8/assets/images/icons/symbols/incognito/white/icon32.png -------------------------------------------------------------------------------- /assets/images/icons/symbols/link/black/icon128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesome-scripts/awesome-userscripts/83b9a3db0ac17f6d1a1ff9eb898fef8b637168a8/assets/images/icons/symbols/link/black/icon128.png -------------------------------------------------------------------------------- /assets/images/icons/symbols/link/black/icon16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesome-scripts/awesome-userscripts/83b9a3db0ac17f6d1a1ff9eb898fef8b637168a8/assets/images/icons/symbols/link/black/icon16.png -------------------------------------------------------------------------------- /assets/images/icons/symbols/link/black/icon256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesome-scripts/awesome-userscripts/83b9a3db0ac17f6d1a1ff9eb898fef8b637168a8/assets/images/icons/symbols/link/black/icon256.png -------------------------------------------------------------------------------- /assets/images/icons/symbols/link/black/icon32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesome-scripts/awesome-userscripts/83b9a3db0ac17f6d1a1ff9eb898fef8b637168a8/assets/images/icons/symbols/link/black/icon32.png -------------------------------------------------------------------------------- /assets/images/icons/symbols/link/black/icon474.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesome-scripts/awesome-userscripts/83b9a3db0ac17f6d1a1ff9eb898fef8b637168a8/assets/images/icons/symbols/link/black/icon474.png -------------------------------------------------------------------------------- /assets/images/icons/symbols/link/black/icon48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesome-scripts/awesome-userscripts/83b9a3db0ac17f6d1a1ff9eb898fef8b637168a8/assets/images/icons/symbols/link/black/icon48.png -------------------------------------------------------------------------------- /assets/images/icons/symbols/link/black/icon64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesome-scripts/awesome-userscripts/83b9a3db0ac17f6d1a1ff9eb898fef8b637168a8/assets/images/icons/symbols/link/black/icon64.png -------------------------------------------------------------------------------- /assets/images/icons/symbols/link/white/icon128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesome-scripts/awesome-userscripts/83b9a3db0ac17f6d1a1ff9eb898fef8b637168a8/assets/images/icons/symbols/link/white/icon128.png -------------------------------------------------------------------------------- /assets/images/icons/symbols/link/white/icon16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesome-scripts/awesome-userscripts/83b9a3db0ac17f6d1a1ff9eb898fef8b637168a8/assets/images/icons/symbols/link/white/icon16.png -------------------------------------------------------------------------------- /assets/images/icons/symbols/link/white/icon256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesome-scripts/awesome-userscripts/83b9a3db0ac17f6d1a1ff9eb898fef8b637168a8/assets/images/icons/symbols/link/white/icon256.png -------------------------------------------------------------------------------- /assets/images/icons/symbols/link/white/icon32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesome-scripts/awesome-userscripts/83b9a3db0ac17f6d1a1ff9eb898fef8b637168a8/assets/images/icons/symbols/link/white/icon32.png -------------------------------------------------------------------------------- /assets/images/icons/symbols/link/white/icon474.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesome-scripts/awesome-userscripts/83b9a3db0ac17f6d1a1ff9eb898fef8b637168a8/assets/images/icons/symbols/link/white/icon474.png -------------------------------------------------------------------------------- /assets/images/icons/symbols/link/white/icon64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesome-scripts/awesome-userscripts/83b9a3db0ac17f6d1a1ff9eb898fef8b637168a8/assets/images/icons/symbols/link/white/icon64.png -------------------------------------------------------------------------------- /assets/images/icons/symbols/nav/black/icon128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesome-scripts/awesome-userscripts/83b9a3db0ac17f6d1a1ff9eb898fef8b637168a8/assets/images/icons/symbols/nav/black/icon128.png -------------------------------------------------------------------------------- /assets/images/icons/symbols/nav/black/icon16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesome-scripts/awesome-userscripts/83b9a3db0ac17f6d1a1ff9eb898fef8b637168a8/assets/images/icons/symbols/nav/black/icon16.png -------------------------------------------------------------------------------- /assets/images/icons/symbols/nav/black/icon216.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesome-scripts/awesome-userscripts/83b9a3db0ac17f6d1a1ff9eb898fef8b637168a8/assets/images/icons/symbols/nav/black/icon216.png -------------------------------------------------------------------------------- /assets/images/icons/symbols/nav/black/icon32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesome-scripts/awesome-userscripts/83b9a3db0ac17f6d1a1ff9eb898fef8b637168a8/assets/images/icons/symbols/nav/black/icon32.png -------------------------------------------------------------------------------- /assets/images/icons/symbols/nav/black/icon48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesome-scripts/awesome-userscripts/83b9a3db0ac17f6d1a1ff9eb898fef8b637168a8/assets/images/icons/symbols/nav/black/icon48.png -------------------------------------------------------------------------------- /assets/images/icons/symbols/nav/black/icon64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesome-scripts/awesome-userscripts/83b9a3db0ac17f6d1a1ff9eb898fef8b637168a8/assets/images/icons/symbols/nav/black/icon64.png -------------------------------------------------------------------------------- /assets/images/icons/symbols/nav/white/icon128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesome-scripts/awesome-userscripts/83b9a3db0ac17f6d1a1ff9eb898fef8b637168a8/assets/images/icons/symbols/nav/white/icon128.png -------------------------------------------------------------------------------- /assets/images/icons/symbols/nav/white/icon16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesome-scripts/awesome-userscripts/83b9a3db0ac17f6d1a1ff9eb898fef8b637168a8/assets/images/icons/symbols/nav/white/icon16.png -------------------------------------------------------------------------------- /assets/images/icons/symbols/nav/white/icon216.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesome-scripts/awesome-userscripts/83b9a3db0ac17f6d1a1ff9eb898fef8b637168a8/assets/images/icons/symbols/nav/white/icon216.png -------------------------------------------------------------------------------- /assets/images/icons/symbols/nav/white/icon32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesome-scripts/awesome-userscripts/83b9a3db0ac17f6d1a1ff9eb898fef8b637168a8/assets/images/icons/symbols/nav/white/icon32.png -------------------------------------------------------------------------------- /assets/images/icons/symbols/nav/white/icon64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesome-scripts/awesome-userscripts/83b9a3db0ac17f6d1a1ff9eb898fef8b637168a8/assets/images/icons/symbols/nav/white/icon64.png -------------------------------------------------------------------------------- /assets/images/icons/symbols/password/black/icon128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesome-scripts/awesome-userscripts/83b9a3db0ac17f6d1a1ff9eb898fef8b637168a8/assets/images/icons/symbols/password/black/icon128.png -------------------------------------------------------------------------------- /assets/images/icons/symbols/password/black/icon16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesome-scripts/awesome-userscripts/83b9a3db0ac17f6d1a1ff9eb898fef8b637168a8/assets/images/icons/symbols/password/black/icon16.png -------------------------------------------------------------------------------- /assets/images/icons/symbols/password/black/icon1846.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesome-scripts/awesome-userscripts/83b9a3db0ac17f6d1a1ff9eb898fef8b637168a8/assets/images/icons/symbols/password/black/icon1846.png -------------------------------------------------------------------------------- /assets/images/icons/symbols/password/black/icon256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesome-scripts/awesome-userscripts/83b9a3db0ac17f6d1a1ff9eb898fef8b637168a8/assets/images/icons/symbols/password/black/icon256.png -------------------------------------------------------------------------------- /assets/images/icons/symbols/password/black/icon32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesome-scripts/awesome-userscripts/83b9a3db0ac17f6d1a1ff9eb898fef8b637168a8/assets/images/icons/symbols/password/black/icon32.png -------------------------------------------------------------------------------- /assets/images/icons/symbols/password/black/icon48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesome-scripts/awesome-userscripts/83b9a3db0ac17f6d1a1ff9eb898fef8b637168a8/assets/images/icons/symbols/password/black/icon48.png -------------------------------------------------------------------------------- /assets/images/icons/symbols/password/black/icon512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesome-scripts/awesome-userscripts/83b9a3db0ac17f6d1a1ff9eb898fef8b637168a8/assets/images/icons/symbols/password/black/icon512.png -------------------------------------------------------------------------------- /assets/images/icons/symbols/password/black/icon64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesome-scripts/awesome-userscripts/83b9a3db0ac17f6d1a1ff9eb898fef8b637168a8/assets/images/icons/symbols/password/black/icon64.png -------------------------------------------------------------------------------- /assets/images/icons/symbols/password/white/icon1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesome-scripts/awesome-userscripts/83b9a3db0ac17f6d1a1ff9eb898fef8b637168a8/assets/images/icons/symbols/password/white/icon1024.png -------------------------------------------------------------------------------- /assets/images/icons/symbols/password/white/icon128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesome-scripts/awesome-userscripts/83b9a3db0ac17f6d1a1ff9eb898fef8b637168a8/assets/images/icons/symbols/password/white/icon128.png -------------------------------------------------------------------------------- /assets/images/icons/symbols/password/white/icon16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesome-scripts/awesome-userscripts/83b9a3db0ac17f6d1a1ff9eb898fef8b637168a8/assets/images/icons/symbols/password/white/icon16.png -------------------------------------------------------------------------------- /assets/images/icons/symbols/password/white/icon1846.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesome-scripts/awesome-userscripts/83b9a3db0ac17f6d1a1ff9eb898fef8b637168a8/assets/images/icons/symbols/password/white/icon1846.png -------------------------------------------------------------------------------- /assets/images/icons/symbols/password/white/icon256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesome-scripts/awesome-userscripts/83b9a3db0ac17f6d1a1ff9eb898fef8b637168a8/assets/images/icons/symbols/password/white/icon256.png -------------------------------------------------------------------------------- /assets/images/icons/symbols/password/white/icon32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesome-scripts/awesome-userscripts/83b9a3db0ac17f6d1a1ff9eb898fef8b637168a8/assets/images/icons/symbols/password/white/icon32.png -------------------------------------------------------------------------------- /assets/images/icons/symbols/password/white/icon512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesome-scripts/awesome-userscripts/83b9a3db0ac17f6d1a1ff9eb898fef8b637168a8/assets/images/icons/symbols/password/white/icon512.png -------------------------------------------------------------------------------- /assets/images/icons/symbols/password/white/icon64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesome-scripts/awesome-userscripts/83b9a3db0ac17f6d1a1ff9eb898fef8b637168a8/assets/images/icons/symbols/password/white/icon64.png -------------------------------------------------------------------------------- /assets/images/icons/symbols/play/black/icon128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesome-scripts/awesome-userscripts/83b9a3db0ac17f6d1a1ff9eb898fef8b637168a8/assets/images/icons/symbols/play/black/icon128.png -------------------------------------------------------------------------------- /assets/images/icons/symbols/play/black/icon16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesome-scripts/awesome-userscripts/83b9a3db0ac17f6d1a1ff9eb898fef8b637168a8/assets/images/icons/symbols/play/black/icon16.png -------------------------------------------------------------------------------- /assets/images/icons/symbols/play/black/icon256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesome-scripts/awesome-userscripts/83b9a3db0ac17f6d1a1ff9eb898fef8b637168a8/assets/images/icons/symbols/play/black/icon256.png -------------------------------------------------------------------------------- /assets/images/icons/symbols/play/black/icon32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesome-scripts/awesome-userscripts/83b9a3db0ac17f6d1a1ff9eb898fef8b637168a8/assets/images/icons/symbols/play/black/icon32.png -------------------------------------------------------------------------------- /assets/images/icons/symbols/play/black/icon3595.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesome-scripts/awesome-userscripts/83b9a3db0ac17f6d1a1ff9eb898fef8b637168a8/assets/images/icons/symbols/play/black/icon3595.png -------------------------------------------------------------------------------- /assets/images/icons/symbols/play/black/icon48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesome-scripts/awesome-userscripts/83b9a3db0ac17f6d1a1ff9eb898fef8b637168a8/assets/images/icons/symbols/play/black/icon48.png -------------------------------------------------------------------------------- /assets/images/icons/symbols/play/black/icon512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesome-scripts/awesome-userscripts/83b9a3db0ac17f6d1a1ff9eb898fef8b637168a8/assets/images/icons/symbols/play/black/icon512.png -------------------------------------------------------------------------------- /assets/images/icons/symbols/play/black/icon64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesome-scripts/awesome-userscripts/83b9a3db0ac17f6d1a1ff9eb898fef8b637168a8/assets/images/icons/symbols/play/black/icon64.png -------------------------------------------------------------------------------- /assets/images/icons/symbols/play/white/icon1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesome-scripts/awesome-userscripts/83b9a3db0ac17f6d1a1ff9eb898fef8b637168a8/assets/images/icons/symbols/play/white/icon1024.png -------------------------------------------------------------------------------- /assets/images/icons/symbols/play/white/icon128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesome-scripts/awesome-userscripts/83b9a3db0ac17f6d1a1ff9eb898fef8b637168a8/assets/images/icons/symbols/play/white/icon128.png -------------------------------------------------------------------------------- /assets/images/icons/symbols/play/white/icon16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesome-scripts/awesome-userscripts/83b9a3db0ac17f6d1a1ff9eb898fef8b637168a8/assets/images/icons/symbols/play/white/icon16.png -------------------------------------------------------------------------------- /assets/images/icons/symbols/play/white/icon256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesome-scripts/awesome-userscripts/83b9a3db0ac17f6d1a1ff9eb898fef8b637168a8/assets/images/icons/symbols/play/white/icon256.png -------------------------------------------------------------------------------- /assets/images/icons/symbols/play/white/icon32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesome-scripts/awesome-userscripts/83b9a3db0ac17f6d1a1ff9eb898fef8b637168a8/assets/images/icons/symbols/play/white/icon32.png -------------------------------------------------------------------------------- /assets/images/icons/symbols/play/white/icon3595.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesome-scripts/awesome-userscripts/83b9a3db0ac17f6d1a1ff9eb898fef8b637168a8/assets/images/icons/symbols/play/white/icon3595.png -------------------------------------------------------------------------------- /assets/images/icons/symbols/play/white/icon512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesome-scripts/awesome-userscripts/83b9a3db0ac17f6d1a1ff9eb898fef8b637168a8/assets/images/icons/symbols/play/white/icon512.png -------------------------------------------------------------------------------- /assets/images/icons/symbols/play/white/icon64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesome-scripts/awesome-userscripts/83b9a3db0ac17f6d1a1ff9eb898fef8b637168a8/assets/images/icons/symbols/play/white/icon64.png -------------------------------------------------------------------------------- /assets/images/icons/symbols/soundwaves/black/icon128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesome-scripts/awesome-userscripts/83b9a3db0ac17f6d1a1ff9eb898fef8b637168a8/assets/images/icons/symbols/soundwaves/black/icon128.png -------------------------------------------------------------------------------- /assets/images/icons/symbols/soundwaves/black/icon1460.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesome-scripts/awesome-userscripts/83b9a3db0ac17f6d1a1ff9eb898fef8b637168a8/assets/images/icons/symbols/soundwaves/black/icon1460.png -------------------------------------------------------------------------------- /assets/images/icons/symbols/soundwaves/black/icon16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesome-scripts/awesome-userscripts/83b9a3db0ac17f6d1a1ff9eb898fef8b637168a8/assets/images/icons/symbols/soundwaves/black/icon16.png -------------------------------------------------------------------------------- /assets/images/icons/symbols/soundwaves/black/icon256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesome-scripts/awesome-userscripts/83b9a3db0ac17f6d1a1ff9eb898fef8b637168a8/assets/images/icons/symbols/soundwaves/black/icon256.png -------------------------------------------------------------------------------- /assets/images/icons/symbols/soundwaves/black/icon32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesome-scripts/awesome-userscripts/83b9a3db0ac17f6d1a1ff9eb898fef8b637168a8/assets/images/icons/symbols/soundwaves/black/icon32.png -------------------------------------------------------------------------------- /assets/images/icons/symbols/soundwaves/black/icon48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesome-scripts/awesome-userscripts/83b9a3db0ac17f6d1a1ff9eb898fef8b637168a8/assets/images/icons/symbols/soundwaves/black/icon48.png -------------------------------------------------------------------------------- /assets/images/icons/symbols/soundwaves/black/icon512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesome-scripts/awesome-userscripts/83b9a3db0ac17f6d1a1ff9eb898fef8b637168a8/assets/images/icons/symbols/soundwaves/black/icon512.png -------------------------------------------------------------------------------- /assets/images/icons/symbols/soundwaves/black/icon64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesome-scripts/awesome-userscripts/83b9a3db0ac17f6d1a1ff9eb898fef8b637168a8/assets/images/icons/symbols/soundwaves/black/icon64.png -------------------------------------------------------------------------------- /assets/images/icons/symbols/soundwaves/white/icon1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesome-scripts/awesome-userscripts/83b9a3db0ac17f6d1a1ff9eb898fef8b637168a8/assets/images/icons/symbols/soundwaves/white/icon1024.png -------------------------------------------------------------------------------- /assets/images/icons/symbols/soundwaves/white/icon128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesome-scripts/awesome-userscripts/83b9a3db0ac17f6d1a1ff9eb898fef8b637168a8/assets/images/icons/symbols/soundwaves/white/icon128.png -------------------------------------------------------------------------------- /assets/images/icons/symbols/soundwaves/white/icon1460.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesome-scripts/awesome-userscripts/83b9a3db0ac17f6d1a1ff9eb898fef8b637168a8/assets/images/icons/symbols/soundwaves/white/icon1460.png -------------------------------------------------------------------------------- /assets/images/icons/symbols/soundwaves/white/icon16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesome-scripts/awesome-userscripts/83b9a3db0ac17f6d1a1ff9eb898fef8b637168a8/assets/images/icons/symbols/soundwaves/white/icon16.png -------------------------------------------------------------------------------- /assets/images/icons/symbols/soundwaves/white/icon256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesome-scripts/awesome-userscripts/83b9a3db0ac17f6d1a1ff9eb898fef8b637168a8/assets/images/icons/symbols/soundwaves/white/icon256.png -------------------------------------------------------------------------------- /assets/images/icons/symbols/soundwaves/white/icon32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesome-scripts/awesome-userscripts/83b9a3db0ac17f6d1a1ff9eb898fef8b637168a8/assets/images/icons/symbols/soundwaves/white/icon32.png -------------------------------------------------------------------------------- /assets/images/icons/symbols/soundwaves/white/icon512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesome-scripts/awesome-userscripts/83b9a3db0ac17f6d1a1ff9eb898fef8b637168a8/assets/images/icons/symbols/soundwaves/white/icon512.png -------------------------------------------------------------------------------- /assets/images/icons/symbols/soundwaves/white/icon64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesome-scripts/awesome-userscripts/83b9a3db0ac17f6d1a1ff9eb898fef8b637168a8/assets/images/icons/symbols/soundwaves/white/icon64.png -------------------------------------------------------------------------------- /assets/images/icons/symbols/translate/black/icon1118.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesome-scripts/awesome-userscripts/83b9a3db0ac17f6d1a1ff9eb898fef8b637168a8/assets/images/icons/symbols/translate/black/icon1118.png -------------------------------------------------------------------------------- /assets/images/icons/symbols/translate/black/icon128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesome-scripts/awesome-userscripts/83b9a3db0ac17f6d1a1ff9eb898fef8b637168a8/assets/images/icons/symbols/translate/black/icon128.png -------------------------------------------------------------------------------- /assets/images/icons/symbols/translate/black/icon16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesome-scripts/awesome-userscripts/83b9a3db0ac17f6d1a1ff9eb898fef8b637168a8/assets/images/icons/symbols/translate/black/icon16.png -------------------------------------------------------------------------------- /assets/images/icons/symbols/translate/black/icon256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesome-scripts/awesome-userscripts/83b9a3db0ac17f6d1a1ff9eb898fef8b637168a8/assets/images/icons/symbols/translate/black/icon256.png -------------------------------------------------------------------------------- /assets/images/icons/symbols/translate/black/icon32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesome-scripts/awesome-userscripts/83b9a3db0ac17f6d1a1ff9eb898fef8b637168a8/assets/images/icons/symbols/translate/black/icon32.png -------------------------------------------------------------------------------- /assets/images/icons/symbols/translate/black/icon48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesome-scripts/awesome-userscripts/83b9a3db0ac17f6d1a1ff9eb898fef8b637168a8/assets/images/icons/symbols/translate/black/icon48.png -------------------------------------------------------------------------------- /assets/images/icons/symbols/translate/black/icon512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesome-scripts/awesome-userscripts/83b9a3db0ac17f6d1a1ff9eb898fef8b637168a8/assets/images/icons/symbols/translate/black/icon512.png -------------------------------------------------------------------------------- /assets/images/icons/symbols/translate/black/icon64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesome-scripts/awesome-userscripts/83b9a3db0ac17f6d1a1ff9eb898fef8b637168a8/assets/images/icons/symbols/translate/black/icon64.png -------------------------------------------------------------------------------- /assets/images/icons/symbols/translate/white/icon1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesome-scripts/awesome-userscripts/83b9a3db0ac17f6d1a1ff9eb898fef8b637168a8/assets/images/icons/symbols/translate/white/icon1024.png -------------------------------------------------------------------------------- /assets/images/icons/symbols/translate/white/icon1118.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesome-scripts/awesome-userscripts/83b9a3db0ac17f6d1a1ff9eb898fef8b637168a8/assets/images/icons/symbols/translate/white/icon1118.png -------------------------------------------------------------------------------- /assets/images/icons/symbols/translate/white/icon128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesome-scripts/awesome-userscripts/83b9a3db0ac17f6d1a1ff9eb898fef8b637168a8/assets/images/icons/symbols/translate/white/icon128.png -------------------------------------------------------------------------------- /assets/images/icons/symbols/translate/white/icon16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesome-scripts/awesome-userscripts/83b9a3db0ac17f6d1a1ff9eb898fef8b637168a8/assets/images/icons/symbols/translate/white/icon16.png -------------------------------------------------------------------------------- /assets/images/icons/symbols/translate/white/icon256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesome-scripts/awesome-userscripts/83b9a3db0ac17f6d1a1ff9eb898fef8b637168a8/assets/images/icons/symbols/translate/white/icon256.png -------------------------------------------------------------------------------- /assets/images/icons/symbols/translate/white/icon32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesome-scripts/awesome-userscripts/83b9a3db0ac17f6d1a1ff9eb898fef8b637168a8/assets/images/icons/symbols/translate/white/icon32.png -------------------------------------------------------------------------------- /assets/images/icons/symbols/translate/white/icon512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesome-scripts/awesome-userscripts/83b9a3db0ac17f6d1a1ff9eb898fef8b637168a8/assets/images/icons/symbols/translate/white/icon512.png -------------------------------------------------------------------------------- /assets/images/icons/symbols/translate/white/icon64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesome-scripts/awesome-userscripts/83b9a3db0ac17f6d1a1ff9eb898fef8b637168a8/assets/images/icons/symbols/translate/white/icon64.png -------------------------------------------------------------------------------- /assets/images/screenshots/scripts/adsbypasser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesome-scripts/awesome-userscripts/83b9a3db0ac17f6d1a1ff9eb898fef8b637168a8/assets/images/screenshots/scripts/adsbypasser.png -------------------------------------------------------------------------------- /assets/images/screenshots/scripts/endless-google.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesome-scripts/awesome-userscripts/83b9a3db0ac17f6d1a1ff9eb898fef8b637168a8/assets/images/screenshots/scripts/endless-google.png -------------------------------------------------------------------------------- /assets/images/screenshots/scripts/github-make-tooltips.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesome-scripts/awesome-userscripts/83b9a3db0ac17f6d1a1ff9eb898fef8b637168a8/assets/images/screenshots/scripts/github-make-tooltips.png -------------------------------------------------------------------------------- /assets/images/screenshots/scripts/github-static-time.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesome-scripts/awesome-userscripts/83b9a3db0ac17f6d1a1ff9eb898fef8b637168a8/assets/images/screenshots/scripts/github-static-time.gif -------------------------------------------------------------------------------- /assets/images/screenshots/scripts/github-toggle-wiki-sidebar.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesome-scripts/awesome-userscripts/83b9a3db0ac17f6d1a1ff9eb898fef8b637168a8/assets/images/screenshots/scripts/github-toggle-wiki-sidebar.gif -------------------------------------------------------------------------------- /assets/images/screenshots/scripts/immersive-translate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesome-scripts/awesome-userscripts/83b9a3db0ac17f6d1a1ff9eb898fef8b637168a8/assets/images/screenshots/scripts/immersive-translate.png -------------------------------------------------------------------------------- /assets/images/screenshots/scripts/linkify-plus-plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesome-scripts/awesome-userscripts/83b9a3db0ac17f6d1a1ff9eb898fef8b637168a8/assets/images/screenshots/scripts/linkify-plus-plus.png -------------------------------------------------------------------------------- /assets/images/screenshots/scripts/pagetual.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesome-scripts/awesome-userscripts/83b9a3db0ac17f6d1a1ff9eb898fef8b637168a8/assets/images/screenshots/scripts/pagetual.png -------------------------------------------------------------------------------- /assets/images/screenshots/scripts/picviewer-ce+.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesome-scripts/awesome-userscripts/83b9a3db0ac17f6d1a1ff9eb898fef8b637168a8/assets/images/screenshots/scripts/picviewer-ce+.gif -------------------------------------------------------------------------------- /assets/images/screenshots/scripts/select-text-inside-a-link-like-opera.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesome-scripts/awesome-userscripts/83b9a3db0ac17f6d1a1ff9eb898fef8b637168a8/assets/images/screenshots/scripts/select-text-inside-a-link-like-opera.png -------------------------------------------------------------------------------- /assets/images/screenshots/scripts/share-google-slides-controls.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesome-scripts/awesome-userscripts/83b9a3db0ac17f6d1a1ff9eb898fef8b637168a8/assets/images/screenshots/scripts/share-google-slides-controls.png -------------------------------------------------------------------------------- /assets/images/screenshots/scripts/show-password-onmouseover.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesome-scripts/awesome-userscripts/83b9a3db0ac17f6d1a1ff9eb898fef8b637168a8/assets/images/screenshots/scripts/show-password-onmouseover.gif -------------------------------------------------------------------------------- /assets/images/screenshots/scripts/undiscord.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesome-scripts/awesome-userscripts/83b9a3db0ac17f6d1a1ff9eb898fef8b637168a8/assets/images/screenshots/scripts/undiscord.gif -------------------------------------------------------------------------------- /assets/images/screenshots/scripts/youtube-commenter-names.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesome-scripts/awesome-userscripts/83b9a3db0ac17f6d1a1ff9eb898fef8b637168a8/assets/images/screenshots/scripts/youtube-commenter-names.png -------------------------------------------------------------------------------- /assets/images/separators/gradient-aqua.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesome-scripts/awesome-userscripts/83b9a3db0ac17f6d1a1ff9eb898fef8b637168a8/assets/images/separators/gradient-aqua.png -------------------------------------------------------------------------------- /assets/images/separators/rainbow-blue-to-red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesome-scripts/awesome-userscripts/83b9a3db0ac17f6d1a1ff9eb898fef8b637168a8/assets/images/separators/rainbow-blue-to-red.png -------------------------------------------------------------------------------- /assets/images/separators/rainbow-red-to-blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesome-scripts/awesome-userscripts/83b9a3db0ac17f6d1a1ff9eb898fef8b637168a8/assets/images/separators/rainbow-red-to-blue.png -------------------------------------------------------------------------------- /docs/CONTRIBUTING.md: -------------------------------------------------------------------------------- 1 | # Contribution Guidelines 2 | 3 | Unfortunately, not every user script can be considered. The aim of the list is to provide a concise list of noteworthy user scripts and that fill a gap. 4 | 5 | 6 | Furthermore, please ensure your pull request follows the following guidelines: 7 | 8 | * Please search previous suggestions before making a new one, as yours may be a duplicate. 9 | * Please make an individual pull request for each suggestion. 10 | * Entries should be sorted in ascending alphabetical order, i.e. a to z. 11 | * New categories, or improvements to the existing categorization are welcome. 12 | * Keep descriptions short, simple and unbiased. 13 | * End all descriptions with a full stop/period. 14 | * Check your spelling and grammar. 15 | * Make sure your text editor is set to remove trailing whitespace. 16 | 17 | Thank you for your suggestions! 18 | -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- 1 |
2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 |

Awesome Userscripts

11 | 12 | 13 | 14 | 15 | Awesome 16 | 17 | Awesome 18 | 19 | PRs Welcome 20 | 21 |

A curated list of Awesome Userscripts.

22 | 23 | Userscripts can improve your browsing experience, and open a lot of possibilities to make the sites you visit better by adding features, making them easier to use, or taking out the annoying bits. 24 | 25 |
26 | 27 | 28 | 29 | # Contents 30 | 31 | - [Compatibility](#compatibility) 32 | - [Scripts](#scripts) 33 | - [Ad blockers](#-ad-blockers) 34 | - [Amazon](#-amazon) 35 | - [Brave](#-brave) 36 | - [ChatGPT](#-chatgpt) 37 | - [Discord](#-discord) 38 | - [DuckDuckGo](#-duckduckgo) 39 | - [GitHub](#-github) 40 | - [Google](#-google) 41 | - [Just Eat (UK)](#-just-eat-uk) 42 | - [Links](#-links) 43 | - [Media](#-media) 44 | - [Navigation](#-navigation) 45 | - [Passwords](#-passwords) 46 | - [Privacy](#-privacy) 47 | - [Text-to-speech](#-text-to-speech) 48 | - [Translation](#-translation) 49 | - [YouTube](#-youtube) 50 | - [Tutorials](#tutorials) 51 | - [Community](#community) 52 | - [Additional Catalogues](#additional-catalogues) 53 | - [Contributing](#contributing) 54 | - [License](#license) 55 | 56 | 57 | 58 | ## Compatibility 59 | 60 | Userscripts can be used w/ the following browsers: 61 | 62 | 63 | 64 | 65 | 66 | 72 | 93 | 128 | 129 | 130 | 136 | 151 | 156 | 157 | 158 | 164 | 191 | 205 | 206 | 207 | 213 | 223 | 241 | 242 | 243 | 249 | 270 | 287 | 288 | 289 | 295 | 316 | 346 | 347 | 348 | 354 | 357 | 362 | 363 | 364 | 370 | 385 | 393 | 394 | 395 | 401 | 409 | 417 | 418 | 419 | 425 | 433 | 441 | 442 | 443 | 449 | 470 | 479 | 480 | 481 |
BrowserUserscript managerInstall browser
67 | 68 | [Install] 70 | Chrome, dev builds or Chromium-based browsers (Windows, macOS, Linux) 71 | 73 | 75 | 76 | 78 | Tampermonkey1 79 | 81 | 82 | 84 | ScriptCat 85 | or 86 | 88 | 89 | 91 | OrangeMonkey1,2 92 | 94 | 95 | [Chrome] 97 | 98 | [Chrome Beta] 100 | 101 | [Chrome Dev] 103 | 104 | [Chrome Canary] 106 | 107 | [Opera]3 109 | 110 | [Opera GX]3 112 | 113 | [Opera Air]3 115 | 116 | [Brave] 118 | 119 | [Vivaldi] 121 | 122 | [Ghost Browser] 124 | 125 | [Whale] 127 |
131 | 132 | [Install] 134 | Safari (macOS, iOS, iPadOS, visionOS) 135 | 137 | 139 | 140 | 142 | Stay 143 | or 144 | 146 | 147 | 149 | Userscripts 150 | 152 | 153 | [Safari] 155 |
159 | 160 | [Install] 162 | Edge or dev builds (Windows, macOS, Linux) 163 | 165 | 167 | 168 | 170 | Tampermonkey1 171 | 173 | 174 | 176 | Violentmonkey2 177 | 179 | 180 | 182 | ScriptCat 183 | or 184 | 186 | 187 | 189 | OrangeMonkey1,2 190 | 192 | 193 | [Edge] 195 | 196 | [Edge Beta] 198 | 199 | [Edge Dev] 201 | 202 | [Edge Canary] 204 |
208 | 209 | [Install] 211 | Edge or dev builds (Android) 212 | 214 | 215 | Tampermonkey 216 | 217 | Violentmonkey 218 | or 219 | 220 | ScriptCat 221 | (install from ≡ > Extensions) 222 | 224 | 226 | [Edge for Android] 228 | 230 | [Edge Beta for Android] 232 | 234 | [Edge Dev for Android] 236 | 238 | [Edge Canary for Android] 240 |
244 | 245 | [Install] 247 | Firefox, dev builds or Gecko-based browsers (Windows, macOS, Linux) 248 | 250 | 252 | 253 | 255 | Tampermonkey 256 | 258 | 259 | 261 | Violentmonkey2 262 | or 263 | 265 | 266 | 268 | ScriptCat 269 | 271 | 272 | [Firefox] 274 | 275 | [Firefox Beta] 277 | 278 | [Firefox Nightly] 280 | 281 | [Waterfox] 283 | 284 | [LibreWolf] 286 |
290 | 291 | [Install] 293 | Firefox, dev builds or Gecko-based browsers (Android) 294 | 296 | 298 | 299 | 301 | Tampermonkey 302 | 304 | 305 | 307 | Violentmonkey2 308 | or 309 | 311 | 312 | 314 | ScriptCat 315 | 317 | 319 | [Firefox for Android] 321 | 323 | [Firefox Beta for Android] 325 | 327 | [Firefox Nightly for Android] 329 | 331 | [Waterfox for Android] 333 | 335 | [Fennec] 337 | 339 | [Iceraven] 341 | 343 | [IronFox] 345 |
349 | 350 | [Install] 352 | QQ Browser (Windows, macOS) 353 | 355 | Not required (Tampermonkey & Violentmonkey pre-installed) 356 | 358 | 359 | [QQ Browser] 361 |
365 | 366 | [Install] 368 | Mises (Android, iOS, iPadOS) 369 | 371 | 373 | 374 | 376 | Tampermonkey1 377 | or 378 | 380 | 381 | 383 | ScriptCat 384 | 386 |
387 | Show QR code 388 | 389 | [Download Mises] 391 | 392 |
396 | 397 | [Install] 399 | Lemur (Android, iOS) 400 | 402 | 404 | 405 | 407 | ScriptCat 408 | 410 |
411 | Show QR code 412 | 413 | [Lemur] 415 |
416 |
420 | 421 | [Install] 423 | Quetta (Android, iOS, iPadOS) 424 | 426 | 428 | 429 | 431 | ScriptCat 432 | 434 |
435 | Show QR code 436 | 437 | [Quetta] 439 | 440 |
444 | 445 | [Install] 447 | Orion (iOS, iPadOS) 448 | 450 | 452 | 453 | 455 | Tampermonkey1 456 | 458 | 459 | 461 | ScriptCat 462 | or 463 | 465 | 466 | 468 | OrangeMonkey1,2 469 | 471 |
472 | Show QR code 473 | 475 | [Orion on Apple App Store] 477 |
478 |
482 |
483 | 1. If you are installing Tampermonkey or OrangeMonkey for a Chromium browser, you must enable Developer Mode in chrome://extensions for userscripts to function

484 | 2. Violentmonkey & OrangeMonkey do not support Streaming Mode in AmazonGPT + BraveGPT + DuckDuckGPT + GoogleGPT

485 | 3. If you are installing a userscript manager for an Opera browser, you must allow it access to search page results in opera://extensions for search page userscripts to function 486 |
487 | 488 | 489 | 490 | ## Scripts 491 | 492 | > [!TIP] 493 | > To show screenshots/links, click the ▸ or userscript descriptions. 494 | 495 | ### Ad blockers 496 | 497 |
498 | AdsBypasser - Bypass Ads, Popups and count-down ads.
499 |
500 | 501 | 502 |
503 |
504 | 💾 505 | Install Full Edition / 506 | 💾 507 | Install Lite Edition / 508 | 📖 509 | Readme / 510 | 📢 511 | Discuss / 512 | 🐛 513 | Report bug 514 |
515 |
516 | 517 |
518 | ChatGPT Widescreen - Enhances ChatGPT with wide/full/tall-screen + spamblock modes. Also works on perplexity.ai + poe.com!
519 |
520 | 521 | 522 |
523 |
524 | 💾 525 | Install / 526 | 📖 527 | Readme / 528 | 📢 529 | Discuss / 530 | 🐛 531 | Report bug 532 |
533 |
534 | 535 |
536 | YouTube Classic - Reverts YouTube to its classic design (unround corners, restore dislikes + remove/redirect Shorts) + block thumbnail ads.
537 |
538 | 539 | 540 |
541 |
542 | 💾 543 | Install / 544 | 📖 545 | Readme / 546 | 📢 547 | Discuss / 548 | 🐛 549 | Report bug 550 |
551 |
552 | 553 | 554 | ### Amazon 555 | 556 |
557 | AmazonGPT - Adds AI chat & product/category summaries to Amazon shopping, powered by the latest LLMs.
558 |
559 | 560 | 561 |
562 |
563 | 💾 564 | Install / 565 | 📖 566 | Readme / 567 | 📢 568 | Discuss / 569 | 🐛 570 | Report bug 571 |
572 |
573 | 574 | 575 | ### Brave 576 | 577 |
578 | BraveGPT - Adds AI chat & search summaries to Brave Search, powered by the latest LLMs.
579 |
580 | 581 | 582 |
583 |
584 | 💾 585 | Install / 586 | 📖 587 | Readme / 588 | 📢 589 | Discuss / 590 | 🐛 591 | Report bug 592 |
593 |
594 | 595 | 596 | ### ChatGPT 597 | 598 |
599 | AmazonGPT - Adds AI chat & product/category summaries to Amazon shopping, powered by the latest LLMs.
600 |
601 | 602 | 603 |
604 |
605 | 💾 606 | Install / 607 | 📖 608 | Readme / 609 | 📢 610 | Discuss / 611 | 🐛 612 | Report bug 613 |
614 |
615 | 616 |
617 | Autoclear ChatGPT History - Auto-clears chat history when visiting chatgpt.com for maximum privacy.
618 |
619 | 620 | 621 |
622 |
623 | 💾 624 | Install / 625 | 📖 626 | Readme / 627 | 📢 628 | Discuss / 629 | 🐛 630 | Report bug 631 |
632 |
633 | 634 |
635 | BraveGPT - Adds AI chat & search summaries to Brave Search, powered by the latest LLMs.
636 |
637 | 638 | 639 |
640 |
641 | 💾 642 | Install / 643 | 📖 644 | Readme / 645 | 📢 646 | Discuss / 647 | 🐛 648 | Report bug 649 |
650 |
651 | 652 |
653 | ChatGPT Auto-Continue - Automatically continue generating answers when ChatGPT responses get cut-off.
654 |
655 | 656 | 657 |
658 |
659 | 💾 660 | Install / 661 | 📖 662 | Readme / 663 | 📢 664 | Discuss / 665 | 🐛 666 | Report bug 667 |
668 |
669 | 670 |
671 | ChatGPT Auto Refresh - Auto-sends background requests to keep sessions fresh & prevent Cloudflare checks + network errors.
672 |
673 | 674 | 675 |
676 |
677 | 💾 678 | Install / 679 | 📖 680 | Readme / 681 | 📢 682 | Discuss / 683 | 🐛 684 | Report bug 685 |
686 |
687 | 688 |
689 | ChatGPT Auto-Talk - Automatically play ChatGPT responses.
690 |
691 | 692 | 693 | 694 | 695 |
696 |
697 | 💾 698 | Install / 699 | 📖 700 | Readme / 701 | 📢 702 | Discuss / 703 | 🐛 704 | Report bug 705 |
706 |
707 | 708 |
709 | ChatGPT Infinity - Generate endless answers from all-knowing ChatGPT (on any topic!)
710 |
711 | 712 | 713 |
714 |
715 | 💾 716 | Install / 717 | 📖 718 | Readme / 719 | 📢 720 | Discuss / 721 | 🐛 722 | Report bug 723 |
724 |
725 | 726 |
727 | ChatGPT Widescreen - Enhances ChatGPT with wide/full/tall-screen + spamblock modes. Also works on perplexity.ai + poe.com!
728 |
729 | 730 | 731 |
732 |
733 | 💾 734 | Install / 735 | 📖 736 | Readme / 737 | 📢 738 | Discuss / 739 | 🐛 740 | Report bug 741 |
742 |
743 | 744 |
745 | DuckDuckGPT - Adds AI chat & search summaries to DuckDuckGo, powered by the latest LLMs.
746 |
747 | 748 | 749 |
750 |
751 | 💾 752 | Install / 753 | 📖 754 | Readme / 755 | 📢 756 | Discuss / 757 | 🐛 758 | Report bug 759 |
760 |
761 | 762 |
763 | GoogleGPT - Adds AI chat & search summaries to Google Search, powered by the latest LLMs.
764 |
765 | 766 | 767 |
768 |
769 | 💾 770 | Install / 771 | 📖 772 | Readme / 773 | 📢 774 | Discuss / 775 | 🐛 776 | Report bug 777 |
778 |
779 | 780 | 781 | ### Discord 782 | 783 |
784 | Undiscord - Delete all messages in a Discord channel or DM.
785 |
786 | 787 | 788 |
789 |
790 | 💾 791 | Install / 792 | 📖 793 | Readme / 794 | 📢 795 | Discuss / 796 | 🐛 797 | Report bug 798 |
799 |
800 | 801 | 802 | ### DuckDuckGo 803 | 804 |
805 | DuckDuckGPT - Adds AI chat & search summaries to DuckDuckGo, powered by the latest LLMs.
806 |
807 | 808 | 809 |
810 |
811 | 💾 812 | Install / 813 | 📖 814 | Readme / 815 | 📢 816 | Discuss / 817 | 🐛 818 | Report bug 819 |
820 |
821 | 822 | 823 | ### GitHub 824 | 825 |
826 | GitHub Commit Labels - Add beautiful labels to conventional commits on GitHub.
827 |
828 | 829 | 830 |
831 |
832 | 💾 833 | Install / 834 | 📖 835 | Readme / 836 | 📢 837 | Discuss / 838 | 🐛 839 | Report bug 840 |
841 |
842 | 843 |
844 | GitHub Make Tooltips - Convert all titles into GitHub tooltips.
845 |
846 | 847 | 848 |
849 |
850 | 💾 851 | Install / 852 | 📖 853 | Readme / 854 | 📢 855 | Discuss / 856 | 🐛 857 | Report bug 858 |
859 |
860 | 861 |
862 | GitHub sort content - Sort lists and tables on GitHub.
863 |
864 | 865 | 866 |
867 |
868 | 💾 869 | Install / 870 | 📖 871 | Readme / 872 | 📢 873 | Discuss / 874 | 🐛 875 | Report bug 876 |
877 |
878 | 879 |
880 | GitHub Star History - Adds star history chart to every repo's sidebar.
881 |
882 | 883 | 884 |
885 |
886 | 💾 887 | Install / 888 | 📖 889 | Readme / 890 | 📢 891 | Discuss / 892 | 🐛 893 | Report bug 894 |
895 |
896 | 897 |
898 | GitHub static time - Convert time ago into a time format of your choice.
899 |
900 | 901 | 902 |
903 |
904 | 💾 905 | Install / 906 | 📖 907 | Readme / 908 | 📢 909 | Discuss / 910 | 🐛 911 | Report bug 912 |
913 |
914 | 915 |
916 | GitHub toggle wiki sidebar - Toggle wiki sidebar view.
917 |
918 | 919 | 920 |
921 |
922 | 💾 923 | Install / 924 | 📖 925 | Readme / 926 | 📢 927 | Discuss / 928 | 🐛 929 | Report bug 930 |
931 |
932 | 933 | 934 | ### Google 935 | 936 |
937 | Don't track me Google - Removes link conversion in Google Search/Maps links.
938 |
939 | 940 | 941 |
942 |
943 | 💾 944 | Install / 945 | 📖 946 | Readme / 947 | 📢 948 | Discuss / 949 | 🐛 950 | Report bug 951 |
952 |
953 | 954 |
955 | Endless Google - Load more results automatically and endlessly.
956 |
957 | 958 | 959 |
960 |
961 | 💾 962 | Install / 963 | 📖 964 | Readme / 965 | 📢 966 | Discuss / 967 | 🐛 968 | Report bug 969 |
970 |
971 | 972 |
973 | GoogleGPT - Adds AI chat & search summaries to Google Search, powered by the latest LLMs.
974 |
975 | 976 | 977 |
978 |
979 | 💾 980 | Install / 981 | 📖 982 | Readme / 983 | 📢 984 | Discuss / 985 | 🐛 986 | Report bug 987 |
988 |
989 | 990 |
991 | Share Google Slides controls - Remotely share the control of a Google Slides presentation.
992 |
993 | 994 | 995 |
996 |
997 | 💾 998 | Install / 999 | 📖 1000 | Readme / 1001 | 📢 1002 | Discuss / 1003 | 🐛 1004 | Report bug 1005 |
1006 |
1007 | 1008 | 1009 | ### Just Eat (UK) 1010 | 1011 |
1012 | Just Eat Userscript - Adds dark mode and advanced filters to Just Eat UK.
1013 |
1014 | 1015 | 1016 |
1017 |
1018 | 💾 1019 | Install / 1020 | 📖 1021 | Readme / 1022 | 📢 1023 | Discuss / 1024 | 🐛 1025 | Report bug 1026 |
1027 |
1028 | 1029 | 1030 | ### Links 1031 | 1032 |
1033 | Don't track me Google - Removes link conversion in Google Search/Maps links.
1034 |
1035 | 1036 | 1037 |
1038 |
1039 | 💾 1040 | Install / 1041 | 📖 1042 | Readme / 1043 | 📢 1044 | Discuss / 1045 | 🐛 1046 | Report bug 1047 |
1048 |
1049 | 1050 |
1051 | Linkify Plus Plus - Turn plain text URLs into links.
1052 |
1053 | 1054 | 1055 |
1056 |
1057 | 💾 1058 | Install / 1059 | 📖 1060 | Readme / 1061 | 📢 1062 | Discuss / 1063 | 🐛 1064 | Report bug 1065 |
1066 |
1067 | 1068 |
1069 | Select text inside a link like Opera - Disable link dragging and select text.
1070 |
1071 | 1072 | 1073 |
1074 |
1075 | 💾 1076 | Install / 1077 | 📖 1078 | Readme / 1079 | 📢 1080 | Discuss / 1081 | 🐛 1082 | Report bug 1083 |
1084 |
1085 | 1086 | 1087 | ### Media 1088 | 1089 |
1090 | Image Max URL - Finds larger or original versions of images/videos for thousands of supported websites, including a customizable image popup feature.
1091 |
1092 | 1093 | 1094 |
1095 |
1096 | 💾 1097 | Install Stable Build / 1098 | 💾 1099 | Install Dev Build / 1100 | 📖 1101 | Readme / 1102 | 📢 1103 | Discuss / 1104 | 🐛 1105 | Report bug 1106 |
1107 |
1108 | 1109 |
1110 | Mouseover Popup Image Viewer - An updated fork of MPIV, maintained by one of Violentmonkey's developers.
1111 |
1112 | 1113 | 1114 |
1115 |
1116 | 💾 1117 | Install / 1118 | 📖 1119 | Readme / 1120 | 📢 1121 | Discuss / 1122 | 🐛 1123 | Report bug 1124 |
1125 |
1126 | 1127 |
1128 | Picviewer CE+ - Powerful picture viewing tool which can popup/scale/rotate/batch save pictures automatically.
1129 |
1130 | 1131 | 1132 |
1133 |
1134 | 💾 1135 | Install / 1136 | 📖 1137 | Readme / 1138 | 📢 1139 | Discuss / 1140 | 🐛 1141 | Report bug 1142 |
1143 |
1144 | 1145 |
1146 | Show and reload broken images - Show and reload broken images, even when it contains "alt" tag.
1147 |
1148 | 1149 | 1150 |
1151 |
1152 | 💾 1153 | Install / 1154 | 📖 1155 | Readme / 1156 | 📢 1157 | Discuss / 1158 | 🐛 1159 | Report bug 1160 |
1161 |
1162 | 1163 | 1164 | ### Navigation 1165 | 1166 |
1167 | Endless Google - Load more results automatically and endlessly.
1168 |
1169 | 1170 | 1171 |
1172 |
1173 | 💾 1174 | Install / 1175 | 📖 1176 | Readme / 1177 | 📢 1178 | Discuss / 1179 | 🐛 1180 | Report bug 1181 |
1182 |
1183 | 1184 |
1185 | Pagetual - Add seamless infinite scrolling to thousands of sites.
1186 |
1187 | 1188 | 1189 |
1190 |
1191 | 💾 1192 | Install / 1193 | 📖 1194 | Readme / 1195 | 📢 1196 | Discuss / 1197 | 🐛 1198 | Report bug 1199 |
1200 |
1201 | 1202 | 1203 | ### Passwords 1204 | 1205 |
1206 | Show Password onMouseOver - Show password when mouseover on password field.
1207 |
1208 | 1209 | 1210 |
1211 |
1212 | 💾 1213 | Install / 1214 | 📢 1215 | Discuss / 1216 | 🐛 1217 | Report bug 1218 |
1219 |
1220 | 1221 | 1222 | ### Privacy 1223 | 1224 |
1225 | Autoclear ChatGPT History - Auto-clears chat history when visiting chatgpt.com for maximum privacy.
1226 |
1227 | 1228 | 1229 |
1230 |
1231 | 💾 1232 | Install / 1233 | 📖 1234 | Readme / 1235 | 📢 1236 | Discuss / 1237 | 🐛 1238 | Report bug 1239 |
1240 |
1241 | 1242 |
1243 | Don't track me Google - Removes link conversion in Google Search/Maps links.
1244 |
1245 | 1246 | 1247 |
1248 |
1249 | 💾 1250 | Install / 1251 | 📖 1252 | Readme / 1253 | 📢 1254 | Discuss / 1255 | 🐛 1256 | Report bug 1257 |
1258 |
1259 | 1260 |
1261 | Undiscord - Delete all messages in a Discord channel or DM.
1262 |
1263 | 1264 | 1265 |
1266 |
1267 | 💾 1268 | Install / 1269 | 📖 1270 | Readme / 1271 | 📢 1272 | Discuss / 1273 | 🐛 1274 | Report bug 1275 |
1276 |
1277 | 1278 | 1279 | ### Text-to-speech 1280 | 1281 |
1282 | ChatGPT Auto-Talk - Automatically play ChatGPT responses.
1283 |
1284 | 1285 | 1286 | 1287 | 1288 |
1289 |
1290 | 💾 1291 | Install / 1292 | 📖 1293 | Readme / 1294 | 📢 1295 | Discuss / 1296 | 🐛 1297 | Report bug 1298 |
1299 |
1300 | 1301 | 1302 | ### Translation 1303 | 1304 |
1305 | Immersive Translate - Translates text on any page.
1306 |
1307 | 1308 | 1309 |
1310 |
1311 | 💾 1312 | Install / 1313 | 📖 1314 | Readme / 1315 | 📢 1316 | Discuss / 1317 | 🐛 1318 | Report bug 1319 |
1320 |
1321 | 1322 | 1323 | ### YouTube 1324 | 1325 |
1326 | YouTube Classic - Reverts YouTube to its classic design (unround corners, restore dislikes + remove/redirect Shorts) + block thumbnail ads.
1327 |
1328 | 1329 | 1330 |
1331 |
1332 | 💾 1333 | Install / 1334 | 📖 1335 | Readme / 1336 | 📢 1337 | Discuss / 1338 | 🐛 1339 | Report bug 1340 |
1341 |
1342 | 1343 |
1344 | YouTube Commenter Names - Make YouTube display the names of commenters instead of their handles.
1345 |
1346 | 1347 | 1348 |
1349 |
1350 | 💾 1351 | Install / 1352 | 📢 1353 | Discuss / 1354 | 🐛 1355 | Report bug 1356 |
1357 |
1358 | 1359 |
1360 | YouTube Play All - Returns the classic "Play All" button for not just videos, but also shorts and livestreams.
1361 |
1362 | 1363 | 1364 | 1365 | 1366 | 1367 | 1368 |
1369 |
1370 | 💾 1371 | Install / 1372 | 📖 1373 | Readme / 1374 | 📢 1375 | Discuss / 1376 | 🐛 1377 | Report bug 1378 |
1379 |
1380 | 1381 | 1382 | 1383 | ## Tutorials 1384 | 1385 | - [Greasemonkey Hacks](https://www.oreilly.com/library/view/greasemonkey-hacks/0596101651/pr05s02.html) - Complete wiki book on Userscripts. 1386 | - [Greasemonkey Tutorial for Beginners](http://hayageek.com/greasemonkey-tutorial/) - How to create simple Userscripts and installing it using Greasemonkey. 1387 | - [Video - GreaseMonkey Userscript Development](https://www.youtube.com/watch?v=hAeWOOJPp0o) 1388 | 1389 | 1390 | 1391 | ## Additional Catalogues 1392 | 1393 | * [UserScripts Mirror](http://userscripts-mirror.org/) - Mirror of the original Userscripts.org repository (that is currently down). 1394 | * [Greasy Fork](https://greasyfork.org/) 1395 | * [OpenUserJS](https://openuserjs.org/) 1396 | 1397 | 1398 | 1399 | ## Community 1400 | 1401 | * [Stack Overflow](https://stackoverflow.com/questions/tagged/userscripts) 1402 | * [`#greasemonkey` on Freenode](http://webchat.freenode.net/?channels=greasemonkey) 1403 | * [`r/userscripts` on Reddit](https://www.reddit.com/r/userscripts/) 1404 | 1405 | 1406 | 1407 | ## Contributing 1408 | 1409 | Contributions are very welcome! 1410 | 1411 | Please have a look at [CONTRIBUTING](https://github.com/awesome-scripts/awesome-userscripts/blob/master/docs/CONTRIBUTING.md) for guidelines. 1412 | 1413 | 1414 | 1415 | ## Top Contributors 1416 | ![Top Contributors widget](https://embeddables.devactivity.com/orgs/awesome-scripts/a53c359f-f5a4-4f42-8542-4d0c78d27fad.svg) 1417 | 1418 | Check also our [Public Dashboard](https://app.devactivity.com/public/?organizationLogin=awesome-scripts) powered by [devActivity](https://devactivity.com/?ref=public_widget) 1419 | 1420 | 1421 | 1422 | ## License 1423 | 1424 | [![CC0](http://cdn.jsdelivr.net/gh/awesome-scripts/awesome-userscripts@8e22f63/assets/images/badges/zero-1.0/88x31.png)](http://creativecommons.org/publicdomain/zero/1.0/) 1425 | 1426 | To the extent possible under law, contributors have waived all copyright and related or neighboring rights to this work. 1427 | 1428 | 1429 | 1430 | ## ⭐ Star History 1431 | 1432 |
1433 | 1434 | 1435 | 1436 | 1437 | 1438 | 1439 | 1440 | 1441 |
1442 | 1443 |
1444 | 1445 | 1446 | 1447 | [Back to top ↑](#top) 1448 | -------------------------------------------------------------------------------- /eslint.config.mjs: -------------------------------------------------------------------------------- 1 | import js from '@eslint/js' 2 | import importPlugin from 'eslint-plugin-import' 3 | import markdown from '@eslint/markdown' 4 | import stylisticJS from '@stylistic/eslint-plugin' 5 | import yml from 'eslint-plugin-yml' 6 | 7 | export default [ 8 | { ignores: ['**/package-lock.json'] }, 9 | { 10 | files: ['**/*.{js,mjs}'], 11 | languageOptions: { ecmaVersion: 'latest', sourceType: 'script' }, 12 | plugins: { 'import': importPlugin, 'js-styles': stylisticJS }, 13 | rules: { 14 | ...js.configs.recommended.rules, 15 | ...importPlugin.flatConfigs.recommended.rules, 16 | 'indent': 'off', 'no-unexpected-multiline': 'off', 'key-spacing': 'off', // allow whitespace anywhere 17 | 'js-styles/no-trailing-spaces': 'error', // ...except at ends of lines 18 | 'js-styles/max-len': ['error', { 'code': 120, // limit lines to 120 chars except if containing... 19 | 'ignoreComments': true, 'ignoreStrings': true, // ...trailing/own-line comments, quoted strings... 20 | 'ignoreTemplateLiterals': true, 'ignoreRegExpLiterals': true }], // ...or template/regex literals 21 | 'js-styles/no-extra-semi': 'error', // disallow unnecessary semicolons 22 | 'quotes': ['error', 'single', // enforce single quotes... 23 | { 'allowTemplateLiterals': true }], // ...except backticks to avoid escaping quotes 24 | 'comma-dangle': ['error', 'never'], // enforce no trailing commas in arrays or objects 25 | 'no-constant-condition': 'off', // allow constant conditions 26 | 'no-empty': 'off', // allow empty blocks 27 | 'no-inner-declarations': 'off', // allow function declarations anywhere 28 | 'no-useless-escape': 'off', // allow all escape chars cause ESLint sucks at detecting truly useless ones 29 | 'no-unused-vars': ['error', { 'caughtErrors': 'none' }] // allow unused named args in catch blocks 30 | } 31 | }, 32 | { 33 | files: ['**/*.md'], language: 'markdown/commonmark', plugins: { markdown }, 34 | rules: { 35 | ...markdown.configs.recommended[0].rules, 36 | 'markdown/heading-increment': 'off', // allow headings to skip levels 37 | 'markdown/fenced-code-language': 'off', // allow code blocks w/ no language specified 38 | 'markdown/no-missing-label-refs': 'off', // allow missing label references 39 | 'markdown/no-multiple-h1': 'off', // allow multi H1s 40 | 'markdown/require-alt-text': 'off' // allow missing img alts 41 | } 42 | }, 43 | { files: ['**/*.mjs'], languageOptions: { sourceType: 'module' }}, 44 | { files: ['**/*.{yaml,yml}'], ...yml.configs['flat/standard'][1] } 45 | ] 46 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "scripts": { 3 | "prepare": "husky", 4 | "lint": "eslint . --cache", 5 | "lint:all": "eslint .", 6 | "lint:fix": "eslint . --fix --cache", 7 | "lint:fix-all": "eslint . --fix" 8 | }, 9 | "devDependencies": { 10 | "@eslint/markdown": "^6.5.0", 11 | "@stylistic/eslint-plugin": "^4.4.1", 12 | "eslint": "^9.28.0", 13 | "eslint-plugin-import": "^2.31.0", 14 | "eslint-plugin-yml": "^1.18.0", 15 | "husky": "^9.1.7" 16 | } 17 | } 18 | --------------------------------------------------------------------------------