├── .editorconfig ├── .eslintrc.json ├── .github ├── FUNDING.yml └── ISSUE_TEMPLATE │ ├── bug.md │ └── youtube-comment.md ├── .gitignore ├── .vscode ├── extensions.json └── settings.json ├── LICENSE.md ├── README.md ├── images └── example.png ├── package.json ├── pnpm-lock.yaml ├── youtube-comment-blacklist.txt └── youtube-comment-blacklist.user.js /.editorconfig: -------------------------------------------------------------------------------- 1 | root = true 2 | 3 | [*] 4 | indent_style = tab 5 | indent_size = 4 6 | charset = utf-8 7 | trim_trailing_whitespace = true 8 | insert_final_newline = true 9 | max_line_length = 140 10 | 11 | [*.md] 12 | indent_style = space 13 | indent_size = 1 14 | -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "env": { 3 | "browser": true, 4 | "greasemonkey": true 5 | }, 6 | "extends": [ 7 | "eslint:recommended" 8 | ], 9 | "parserOptions": { 10 | "ecmaVersion": "latest" 11 | }, 12 | "rules": { 13 | "dot-notation": "error", 14 | "eqeqeq": "error", 15 | "indent": [ 16 | "error", 17 | "tab" 18 | ], 19 | "max-len": [ 20 | "error", 21 | { 22 | "code": 140 23 | } 24 | ], 25 | "no-empty-function": "warn", 26 | "no-extra-parens": "error", 27 | "quotes": [ 28 | "error", 29 | "double" 30 | ], 31 | "semi": [ 32 | "error", 33 | "always" 34 | ], 35 | "strict": "error" 36 | } 37 | } 38 | -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | # These are supported funding model platforms 2 | 3 | github: # Replace with up to 4 GitHub Sponsors-enabled usernames e.g., [user1, user2] 4 | patreon: NatoBoram # Replace with a single Patreon username 5 | open_collective: # Replace with a single Open Collective username 6 | ko_fi: # Replace with a single Ko-fi username 7 | tidelift: # Replace with a single Tidelift platform-name/package-name e.g., npm/babel 8 | community_bridge: # Replace with a single Community Bridge project-name e.g., cloud-foundry 9 | liberapay: # Replace with a single Liberapay username 10 | issuehunt: # Replace with a single IssueHunt username 11 | otechie: # Replace with a single Otechie username 12 | custom: ["https://paypal.me/NatoBoram/5"] # Replace with up to 4 custom sponsorship URLs e.g., ['link1', 'link2'] 13 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Bug 3 | about: Report a problem with the script 4 | title: "Bug : " 5 | labels: "Bug" 6 | assignees: "" 7 | --- 8 | 9 | ### Description 10 | 11 | ### How to reproduce 12 | 13 | 1. 14 | 15 | ### Environment 16 | 17 | - Browser : 18 | - Add-on : 19 | - Operating System : 20 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/youtube-comment.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: YouTube Comment 3 | about: Request a new entry to the blacklist 4 | title: "Add to blacklist : " 5 | labels: "Blacklist" 6 | assignees: "" 7 | --- 8 | 9 | ### Offending comment 10 | 11 | > 12 | 13 | ### Suggested blacklist entry 14 | 15 | `` 16 | 17 | ### Video URL 18 | 19 | <> 20 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Created by https://www.toptal.com/developers/gitignore/api/linux,macos,windows,visualstudiocode,node 2 | # Edit at https://www.toptal.com/developers/gitignore?templates=linux,macos,windows,visualstudiocode,node 3 | 4 | ### Linux ### 5 | *~ 6 | 7 | # temporary files which can be created if a process still has a handle open of a deleted file 8 | .fuse_hidden* 9 | 10 | # KDE directory preferences 11 | .directory 12 | 13 | # Linux trash folder which might appear on any partition or disk 14 | .Trash-* 15 | 16 | # .nfs files are created when an open file is removed but is still being accessed 17 | .nfs* 18 | 19 | ### macOS ### 20 | # General 21 | .DS_Store 22 | .AppleDouble 23 | .LSOverride 24 | 25 | # Icon must end with two \r 26 | Icon 27 | 28 | # Thumbnails 29 | ._* 30 | 31 | # Files that might appear in the root of a volume 32 | .DocumentRevisions-V100 33 | .fseventsd 34 | .Spotlight-V100 35 | .TemporaryItems 36 | .Trashes 37 | .VolumeIcon.icns 38 | .com.apple.timemachine.donotpresent 39 | 40 | # Directories potentially created on remote AFP share 41 | .AppleDB 42 | .AppleDesktop 43 | Network Trash Folder 44 | Temporary Items 45 | .apdisk 46 | 47 | ### Node ### 48 | # Logs 49 | logs 50 | *.log 51 | npm-debug.log* 52 | yarn-debug.log* 53 | yarn-error.log* 54 | lerna-debug.log* 55 | 56 | # Diagnostic reports (https://nodejs.org/api/report.html) 57 | #report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json 58 | 59 | # Runtime data 60 | pids 61 | *.pid 62 | *.seed 63 | *.pid.lock 64 | 65 | # Directory for instrumented libs generated by jscoverage/JSCover 66 | lib-cov 67 | 68 | # Coverage directory used by tools like istanbul 69 | coverage 70 | *.lcov 71 | 72 | # nyc test coverage 73 | .nyc_output 74 | 75 | # Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files) 76 | .grunt 77 | 78 | # Bower dependency directory (https://bower.io/) 79 | bower_components 80 | 81 | # node-waf configuration 82 | .lock-wscript 83 | 84 | # Compiled binary addons (https://nodejs.org/api/addons.html) 85 | build/Release 86 | 87 | # Dependency directories 88 | node_modules/ 89 | jspm_packages/ 90 | 91 | # TypeScript v1 declaration files 92 | typings/ 93 | 94 | # TypeScript cache 95 | *.tsbuildinfo 96 | 97 | # Optional npm cache directory 98 | .npm 99 | 100 | # Optional eslint cache 101 | .eslintcache 102 | 103 | # Microbundle cache 104 | .rpt2_cache/ 105 | .rts2_cache_cjs/ 106 | .rts2_cache_es/ 107 | .rts2_cache_umd/ 108 | 109 | # Optional REPL history 110 | .node_repl_history 111 | 112 | # Output of 'npm pack' 113 | *.tgz 114 | 115 | # Yarn Integrity file 116 | .yarn-integrity 117 | 118 | # dotenv environment variables file 119 | .env 120 | .env.test 121 | 122 | # parcel-bundler cache (https://parceljs.org/) 123 | .cache 124 | 125 | # Next.js build output 126 | .next 127 | 128 | # Nuxt.js build / generate output 129 | .nuxt 130 | dist 131 | 132 | # Gatsby files 133 | .cache/ 134 | # Comment in the public line in if your project uses Gatsby and not Next.js 135 | # https://nextjs.org/blog/next-9-1#public-directory-support 136 | # public 137 | 138 | # vuepress build output 139 | .vuepress/dist 140 | 141 | # Serverless directories 142 | .serverless/ 143 | 144 | # FuseBox cache 145 | .fusebox/ 146 | 147 | # DynamoDB Local files 148 | .dynamodb/ 149 | 150 | # TernJS port file 151 | .tern-port 152 | 153 | # Stores VSCode versions used for testing VSCode extensions 154 | .vscode-test 155 | 156 | ### VisualStudioCode ### 157 | .vscode/* 158 | !.vscode/settings.json 159 | !.vscode/tasks.json 160 | !.vscode/launch.json 161 | !.vscode/extensions.json 162 | *.code-workspace 163 | 164 | ### VisualStudioCode Patch ### 165 | # Ignore all local history of files 166 | .history 167 | 168 | ### Windows ### 169 | # Windows thumbnail cache files 170 | Thumbs.db 171 | Thumbs.db:encryptable 172 | ehthumbs.db 173 | ehthumbs_vista.db 174 | 175 | # Dump file 176 | *.stackdump 177 | 178 | # Folder config file 179 | [Dd]esktop.ini 180 | 181 | # Recycle Bin used on file shares 182 | $RECYCLE.BIN/ 183 | 184 | # Windows Installer files 185 | *.cab 186 | *.msi 187 | *.msix 188 | *.msm 189 | *.msp 190 | 191 | # Windows shortcuts 192 | *.lnk 193 | 194 | # End of https://www.toptal.com/developers/gitignore/api/linux,macos,windows,visualstudiocode,node 195 | -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- 1 | { 2 | // See https://go.microsoft.com/fwlink/?LinkId=827846 to learn about workspace recommendations. 3 | // Extension identifier format: ${publisher}.${name}. Example: vscode.csharp 4 | // List of extensions which should be recommended for users of this workspace. 5 | "recommendations": [ 6 | "adguard.adblock", 7 | "davidanson.vscode-markdownlint", 8 | "dbaeumer.vscode-eslint", 9 | "editorconfig.editorconfig", 10 | "github.github-vscode-theme", 11 | "github.vscode-pull-request-github", 12 | "ms-vscode.github-issues-prs", 13 | "visualstudioexptteam.vscodeintellicode" 14 | ], 15 | // List of extensions recommended by VS Code that should not be recommended for users of this workspace. 16 | "unwantedRecommendations": [ 17 | "dbaeumer.jshint", 18 | "firefox-devtools.vscode-firefox-debug", 19 | "ms-azuretools.vscode-docker", 20 | "ms-edgedevtools.vscode-edge-devtools", 21 | "ms-vscode-remote.remote-wsl", 22 | "msjsdiag.debugger-for-chrome" 23 | ] 24 | } 25 | -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "[javascript]": { 3 | "editor.defaultFormatter": "dbaeumer.vscode-eslint" 4 | }, 5 | "[json]": { 6 | "editor.rulers": [] 7 | }, 8 | "[markdown]": { 9 | "editor.rulers": [] 10 | }, 11 | "editor.codeActionsOnSave": { 12 | "source.fixAll": true 13 | }, 14 | "editor.formatOnSave": true, 15 | "editor.insertSpaces": false, 16 | "editor.rulers": [ 17 | 140 18 | ], 19 | "eslint.packageManager": "pnpm", 20 | "files.insertFinalNewline": true, 21 | "files.trimFinalNewlines": true, 22 | "files.trimTrailingWhitespace": true, 23 | "npm.packageManager": "pnpm" 24 | } 25 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- 1 | # GNU GENERAL PUBLIC LICENSE 2 | 3 | Version 3, 29 June 2007 4 | 5 | Copyright (C) 2007 Free Software Foundation, Inc. 6 | 7 | 8 | Everyone is permitted to copy and distribute verbatim copies of this 9 | license document, but changing it is not allowed. 10 | 11 | ## Preamble 12 | 13 | The GNU General Public License is a free, copyleft license for 14 | software and other kinds of works. 15 | 16 | The licenses for most software and other practical works are designed 17 | to take away your freedom to share and change the works. By contrast, 18 | the GNU General Public License is intended to guarantee your freedom 19 | to share and change all versions of a program--to make sure it remains 20 | free software for all its users. We, the Free Software Foundation, use 21 | the GNU General Public License for most of our software; it applies 22 | also to any other work released this way by its authors. You can apply 23 | it to your programs, too. 24 | 25 | When we speak of free software, we are referring to freedom, not 26 | price. Our General Public Licenses are designed to make sure that you 27 | have the freedom to distribute copies of free software (and charge for 28 | them if you wish), that you receive source code or can get it if you 29 | want it, that you can change the software or use pieces of it in new 30 | free programs, and that you know you can do these things. 31 | 32 | To protect your rights, we need to prevent others from denying you 33 | these rights or asking you to surrender the rights. Therefore, you 34 | have certain responsibilities if you distribute copies of the 35 | software, or if you modify it: responsibilities to respect the freedom 36 | of others. 37 | 38 | For example, if you distribute copies of such a program, whether 39 | gratis or for a fee, you must pass on to the recipients the same 40 | freedoms that you received. You must make sure that they, too, receive 41 | or can get the source code. And you must show them these terms so they 42 | know their rights. 43 | 44 | Developers that use the GNU GPL protect your rights with two steps: 45 | (1) assert copyright on the software, and (2) offer you this License 46 | giving you legal permission to copy, distribute and/or modify it. 47 | 48 | For the developers' and authors' protection, the GPL clearly explains 49 | that there is no warranty for this free software. For both users' and 50 | authors' sake, the GPL requires that modified versions be marked as 51 | changed, so that their problems will not be attributed erroneously to 52 | authors of previous versions. 53 | 54 | Some devices are designed to deny users access to install or run 55 | modified versions of the software inside them, although the 56 | manufacturer can do so. This is fundamentally incompatible with the 57 | aim of protecting users' freedom to change the software. The 58 | systematic pattern of such abuse occurs in the area of products for 59 | individuals to use, which is precisely where it is most unacceptable. 60 | Therefore, we have designed this version of the GPL to prohibit the 61 | practice for those products. If such problems arise substantially in 62 | other domains, we stand ready to extend this provision to those 63 | domains in future versions of the GPL, as needed to protect the 64 | freedom of users. 65 | 66 | Finally, every program is threatened constantly by software patents. 67 | States should not allow patents to restrict development and use of 68 | software on general-purpose computers, but in those that do, we wish 69 | to avoid the special danger that patents applied to a free program 70 | could make it effectively proprietary. To prevent this, the GPL 71 | assures that patents cannot be used to render the program non-free. 72 | 73 | The precise terms and conditions for copying, distribution and 74 | modification follow. 75 | 76 | ## TERMS AND CONDITIONS 77 | 78 | ### 0. Definitions 79 | 80 | "This License" refers to version 3 of the GNU General Public License. 81 | 82 | "Copyright" also means copyright-like laws that apply to other kinds 83 | of works, such as semiconductor masks. 84 | 85 | "The Program" refers to any copyrightable work licensed under this 86 | License. Each licensee is addressed as "you". "Licensees" and 87 | "recipients" may be individuals or organizations. 88 | 89 | To "modify" a work means to copy from or adapt all or part of the work 90 | in a fashion requiring copyright permission, other than the making of 91 | an exact copy. The resulting work is called a "modified version" of 92 | the earlier work or a work "based on" the earlier work. 93 | 94 | A "covered work" means either the unmodified Program or a work based 95 | on the Program. 96 | 97 | To "propagate" a work means to do anything with it that, without 98 | permission, would make you directly or secondarily liable for 99 | infringement under applicable copyright law, except executing it on a 100 | computer or modifying a private copy. Propagation includes copying, 101 | distribution (with or without modification), making available to the 102 | public, and in some countries other activities as well. 103 | 104 | To "convey" a work means any kind of propagation that enables other 105 | parties to make or receive copies. Mere interaction with a user 106 | through a computer network, with no transfer of a copy, is not 107 | conveying. 108 | 109 | An interactive user interface displays "Appropriate Legal Notices" to 110 | the extent that it includes a convenient and prominently visible 111 | feature that (1) displays an appropriate copyright notice, and (2) 112 | tells the user that there is no warranty for the work (except to the 113 | extent that warranties are provided), that licensees may convey the 114 | work under this License, and how to view a copy of this License. If 115 | the interface presents a list of user commands or options, such as a 116 | menu, a prominent item in the list meets this criterion. 117 | 118 | ### 1. Source Code 119 | 120 | The "source code" for a work means the preferred form of the work for 121 | making modifications to it. "Object code" means any non-source form of 122 | a work. 123 | 124 | A "Standard Interface" means an interface that either is an official 125 | standard defined by a recognized standards body, or, in the case of 126 | interfaces specified for a particular programming language, one that 127 | is widely used among developers working in that language. 128 | 129 | The "System Libraries" of an executable work include anything, other 130 | than the work as a whole, that (a) is included in the normal form of 131 | packaging a Major Component, but which is not part of that Major 132 | Component, and (b) serves only to enable use of the work with that 133 | Major Component, or to implement a Standard Interface for which an 134 | implementation is available to the public in source code form. A 135 | "Major Component", in this context, means a major essential component 136 | (kernel, window system, and so on) of the specific operating system 137 | (if any) on which the executable work runs, or a compiler used to 138 | produce the work, or an object code interpreter used to run it. 139 | 140 | The "Corresponding Source" for a work in object code form means all 141 | the source code needed to generate, install, and (for an executable 142 | work) run the object code and to modify the work, including scripts to 143 | control those activities. However, it does not include the work's 144 | System Libraries, or general-purpose tools or generally available free 145 | programs which are used unmodified in performing those activities but 146 | which are not part of the work. For example, Corresponding Source 147 | includes interface definition files associated with source files for 148 | the work, and the source code for shared libraries and dynamically 149 | linked subprograms that the work is specifically designed to require, 150 | such as by intimate data communication or control flow between those 151 | subprograms and other parts of the work. 152 | 153 | The Corresponding Source need not include anything that users can 154 | regenerate automatically from other parts of the Corresponding Source. 155 | 156 | The Corresponding Source for a work in source code form is that same 157 | work. 158 | 159 | ### 2. Basic Permissions 160 | 161 | All rights granted under this License are granted for the term of 162 | copyright on the Program, and are irrevocable provided the stated 163 | conditions are met. This License explicitly affirms your unlimited 164 | permission to run the unmodified Program. The output from running a 165 | covered work is covered by this License only if the output, given its 166 | content, constitutes a covered work. This License acknowledges your 167 | rights of fair use or other equivalent, as provided by copyright law. 168 | 169 | You may make, run and propagate covered works that you do not convey, 170 | without conditions so long as your license otherwise remains in force. 171 | You may convey covered works to others for the sole purpose of having 172 | them make modifications exclusively for you, or provide you with 173 | facilities for running those works, provided that you comply with the 174 | terms of this License in conveying all material for which you do not 175 | control copyright. Those thus making or running the covered works for 176 | you must do so exclusively on your behalf, under your direction and 177 | control, on terms that prohibit them from making any copies of your 178 | copyrighted material outside their relationship with you. 179 | 180 | Conveying under any other circumstances is permitted solely under the 181 | conditions stated below. Sublicensing is not allowed; section 10 makes 182 | it unnecessary. 183 | 184 | ### 3. Protecting Users' Legal Rights From Anti-Circumvention Law 185 | 186 | No covered work shall be deemed part of an effective technological 187 | measure under any applicable law fulfilling obligations under article 188 | 11 of the WIPO copyright treaty adopted on 20 December 1996, or 189 | similar laws prohibiting or restricting circumvention of such 190 | measures. 191 | 192 | When you convey a covered work, you waive any legal power to forbid 193 | circumvention of technological measures to the extent such 194 | circumvention is effected by exercising rights under this License with 195 | respect to the covered work, and you disclaim any intention to limit 196 | operation or modification of the work as a means of enforcing, against 197 | the work's users, your or third parties' legal rights to forbid 198 | circumvention of technological measures. 199 | 200 | ### 4. Conveying Verbatim Copies 201 | 202 | You may convey verbatim copies of the Program's source code as you 203 | receive it, in any medium, provided that you conspicuously and 204 | appropriately publish on each copy an appropriate copyright notice; 205 | keep intact all notices stating that this License and any 206 | non-permissive terms added in accord with section 7 apply to the code; 207 | keep intact all notices of the absence of any warranty; and give all 208 | recipients a copy of this License along with the Program. 209 | 210 | You may charge any price or no price for each copy that you convey, 211 | and you may offer support or warranty protection for a fee. 212 | 213 | ### 5. Conveying Modified Source Versions 214 | 215 | You may convey a work based on the Program, or the modifications to 216 | produce it from the Program, in the form of source code under the 217 | terms of section 4, provided that you also meet all of these 218 | conditions: 219 | 220 | - a) The work must carry prominent notices stating that you modified 221 | it, and giving a relevant date. 222 | - b) The work must carry prominent notices stating that it is 223 | released under this License and any conditions added under 224 | section 7. This requirement modifies the requirement in section 4 225 | to "keep intact all notices". 226 | - c) You must license the entire work, as a whole, under this 227 | License to anyone who comes into possession of a copy. This 228 | License will therefore apply, along with any applicable section 7 229 | additional terms, to the whole of the work, and all its parts, 230 | regardless of how they are packaged. This License gives no 231 | permission to license the work in any other way, but it does not 232 | invalidate such permission if you have separately received it. 233 | - d) If the work has interactive user interfaces, each must display 234 | Appropriate Legal Notices; however, if the Program has interactive 235 | interfaces that do not display Appropriate Legal Notices, your 236 | work need not make them do so. 237 | 238 | A compilation of a covered work with other separate and independent 239 | works, which are not by their nature extensions of the covered work, 240 | and which are not combined with it such as to form a larger program, 241 | in or on a volume of a storage or distribution medium, is called an 242 | "aggregate" if the compilation and its resulting copyright are not 243 | used to limit the access or legal rights of the compilation's users 244 | beyond what the individual works permit. Inclusion of a covered work 245 | in an aggregate does not cause this License to apply to the other 246 | parts of the aggregate. 247 | 248 | ### 6. Conveying Non-Source Forms 249 | 250 | You may convey a covered work in object code form under the terms of 251 | sections 4 and 5, provided that you also convey the machine-readable 252 | Corresponding Source under the terms of this License, in one of these 253 | ways: 254 | 255 | - a) Convey the object code in, or embodied in, a physical product 256 | (including a physical distribution medium), accompanied by the 257 | Corresponding Source fixed on a durable physical medium 258 | customarily used for software interchange. 259 | - b) Convey the object code in, or embodied in, a physical product 260 | (including a physical distribution medium), accompanied by a 261 | written offer, valid for at least three years and valid for as 262 | long as you offer spare parts or customer support for that product 263 | model, to give anyone who possesses the object code either (1) a 264 | copy of the Corresponding Source for all the software in the 265 | product that is covered by this License, on a durable physical 266 | medium customarily used for software interchange, for a price no 267 | more than your reasonable cost of physically performing this 268 | conveying of source, or (2) access to copy the Corresponding 269 | Source from a network server at no charge. 270 | - c) Convey individual copies of the object code with a copy of the 271 | written offer to provide the Corresponding Source. This 272 | alternative is allowed only occasionally and noncommercially, and 273 | only if you received the object code with such an offer, in accord 274 | with subsection 6b. 275 | - d) Convey the object code by offering access from a designated 276 | place (gratis or for a charge), and offer equivalent access to the 277 | Corresponding Source in the same way through the same place at no 278 | further charge. You need not require recipients to copy the 279 | Corresponding Source along with the object code. If the place to 280 | copy the object code is a network server, the Corresponding Source 281 | may be on a different server (operated by you or a third party) 282 | that supports equivalent copying facilities, provided you maintain 283 | clear directions next to the object code saying where to find the 284 | Corresponding Source. Regardless of what server hosts the 285 | Corresponding Source, you remain obligated to ensure that it is 286 | available for as long as needed to satisfy these requirements. 287 | - e) Convey the object code using peer-to-peer transmission, 288 | provided you inform other peers where the object code and 289 | Corresponding Source of the work are being offered to the general 290 | public at no charge under subsection 6d. 291 | 292 | A separable portion of the object code, whose source code is excluded 293 | from the Corresponding Source as a System Library, need not be 294 | included in conveying the object code work. 295 | 296 | A "User Product" is either (1) a "consumer product", which means any 297 | tangible personal property which is normally used for personal, 298 | family, or household purposes, or (2) anything designed or sold for 299 | incorporation into a dwelling. In determining whether a product is a 300 | consumer product, doubtful cases shall be resolved in favor of 301 | coverage. For a particular product received by a particular user, 302 | "normally used" refers to a typical or common use of that class of 303 | product, regardless of the status of the particular user or of the way 304 | in which the particular user actually uses, or expects or is expected 305 | to use, the product. A product is a consumer product regardless of 306 | whether the product has substantial commercial, industrial or 307 | non-consumer uses, unless such uses represent the only significant 308 | mode of use of the product. 309 | 310 | "Installation Information" for a User Product means any methods, 311 | procedures, authorization keys, or other information required to 312 | install and execute modified versions of a covered work in that User 313 | Product from a modified version of its Corresponding Source. The 314 | information must suffice to ensure that the continued functioning of 315 | the modified object code is in no case prevented or interfered with 316 | solely because modification has been made. 317 | 318 | If you convey an object code work under this section in, or with, or 319 | specifically for use in, a User Product, and the conveying occurs as 320 | part of a transaction in which the right of possession and use of the 321 | User Product is transferred to the recipient in perpetuity or for a 322 | fixed term (regardless of how the transaction is characterized), the 323 | Corresponding Source conveyed under this section must be accompanied 324 | by the Installation Information. But this requirement does not apply 325 | if neither you nor any third party retains the ability to install 326 | modified object code on the User Product (for example, the work has 327 | been installed in ROM). 328 | 329 | The requirement to provide Installation Information does not include a 330 | requirement to continue to provide support service, warranty, or 331 | updates for a work that has been modified or installed by the 332 | recipient, or for the User Product in which it has been modified or 333 | installed. Access to a network may be denied when the modification 334 | itself materially and adversely affects the operation of the network 335 | or violates the rules and protocols for communication across the 336 | network. 337 | 338 | Corresponding Source conveyed, and Installation Information provided, 339 | in accord with this section must be in a format that is publicly 340 | documented (and with an implementation available to the public in 341 | source code form), and must require no special password or key for 342 | unpacking, reading or copying. 343 | 344 | ### 7. Additional Terms 345 | 346 | "Additional permissions" are terms that supplement the terms of this 347 | License by making exceptions from one or more of its conditions. 348 | Additional permissions that are applicable to the entire Program shall 349 | be treated as though they were included in this License, to the extent 350 | that they are valid under applicable law. If additional permissions 351 | apply only to part of the Program, that part may be used separately 352 | under those permissions, but the entire Program remains governed by 353 | this License without regard to the additional permissions. 354 | 355 | When you convey a copy of a covered work, you may at your option 356 | remove any additional permissions from that copy, or from any part of 357 | it. (Additional permissions may be written to require their own 358 | removal in certain cases when you modify the work.) You may place 359 | additional permissions on material, added by you to a covered work, 360 | for which you have or can give appropriate copyright permission. 361 | 362 | Notwithstanding any other provision of this License, for material you 363 | add to a covered work, you may (if authorized by the copyright holders 364 | of that material) supplement the terms of this License with terms: 365 | 366 | - a) Disclaiming warranty or limiting liability differently from the 367 | terms of sections 15 and 16 of this License; or 368 | - b) Requiring preservation of specified reasonable legal notices or 369 | author attributions in that material or in the Appropriate Legal 370 | Notices displayed by works containing it; or 371 | - c) Prohibiting misrepresentation of the origin of that material, 372 | or requiring that modified versions of such material be marked in 373 | reasonable ways as different from the original version; or 374 | - d) Limiting the use for publicity purposes of names of licensors 375 | or authors of the material; or 376 | - e) Declining to grant rights under trademark law for use of some 377 | trade names, trademarks, or service marks; or 378 | - f) Requiring indemnification of licensors and authors of that 379 | material by anyone who conveys the material (or modified versions 380 | of it) with contractual assumptions of liability to the recipient, 381 | for any liability that these contractual assumptions directly 382 | impose on those licensors and authors. 383 | 384 | All other non-permissive additional terms are considered "further 385 | restrictions" within the meaning of section 10. If the Program as you 386 | received it, or any part of it, contains a notice stating that it is 387 | governed by this License along with a term that is a further 388 | restriction, you may remove that term. If a license document contains 389 | a further restriction but permits relicensing or conveying under this 390 | License, you may add to a covered work material governed by the terms 391 | of that license document, provided that the further restriction does 392 | not survive such relicensing or conveying. 393 | 394 | If you add terms to a covered work in accord with this section, you 395 | must place, in the relevant source files, a statement of the 396 | additional terms that apply to those files, or a notice indicating 397 | where to find the applicable terms. 398 | 399 | Additional terms, permissive or non-permissive, may be stated in the 400 | form of a separately written license, or stated as exceptions; the 401 | above requirements apply either way. 402 | 403 | ### 8. Termination 404 | 405 | You may not propagate or modify a covered work except as expressly 406 | provided under this License. Any attempt otherwise to propagate or 407 | modify it is void, and will automatically terminate your rights under 408 | this License (including any patent licenses granted under the third 409 | paragraph of section 11). 410 | 411 | However, if you cease all violation of this License, then your license 412 | from a particular copyright holder is reinstated (a) provisionally, 413 | unless and until the copyright holder explicitly and finally 414 | terminates your license, and (b) permanently, if the copyright holder 415 | fails to notify you of the violation by some reasonable means prior to 416 | 60 days after the cessation. 417 | 418 | Moreover, your license from a particular copyright holder is 419 | reinstated permanently if the copyright holder notifies you of the 420 | violation by some reasonable means, this is the first time you have 421 | received notice of violation of this License (for any work) from that 422 | copyright holder, and you cure the violation prior to 30 days after 423 | your receipt of the notice. 424 | 425 | Termination of your rights under this section does not terminate the 426 | licenses of parties who have received copies or rights from you under 427 | this License. If your rights have been terminated and not permanently 428 | reinstated, you do not qualify to receive new licenses for the same 429 | material under section 10. 430 | 431 | ### 9. Acceptance Not Required for Having Copies 432 | 433 | You are not required to accept this License in order to receive or run 434 | a copy of the Program. Ancillary propagation of a covered work 435 | occurring solely as a consequence of using peer-to-peer transmission 436 | to receive a copy likewise does not require acceptance. However, 437 | nothing other than this License grants you permission to propagate or 438 | modify any covered work. These actions infringe copyright if you do 439 | not accept this License. Therefore, by modifying or propagating a 440 | covered work, you indicate your acceptance of this License to do so. 441 | 442 | ### 10. Automatic Licensing of Downstream Recipients 443 | 444 | Each time you convey a covered work, the recipient automatically 445 | receives a license from the original licensors, to run, modify and 446 | propagate that work, subject to this License. You are not responsible 447 | for enforcing compliance by third parties with this License. 448 | 449 | An "entity transaction" is a transaction transferring control of an 450 | organization, or substantially all assets of one, or subdividing an 451 | organization, or merging organizations. If propagation of a covered 452 | work results from an entity transaction, each party to that 453 | transaction who receives a copy of the work also receives whatever 454 | licenses to the work the party's predecessor in interest had or could 455 | give under the previous paragraph, plus a right to possession of the 456 | Corresponding Source of the work from the predecessor in interest, if 457 | the predecessor has it or can get it with reasonable efforts. 458 | 459 | You may not impose any further restrictions on the exercise of the 460 | rights granted or affirmed under this License. For example, you may 461 | not impose a license fee, royalty, or other charge for exercise of 462 | rights granted under this License, and you may not initiate litigation 463 | (including a cross-claim or counterclaim in a lawsuit) alleging that 464 | any patent claim is infringed by making, using, selling, offering for 465 | sale, or importing the Program or any portion of it. 466 | 467 | ### 11. Patents 468 | 469 | A "contributor" is a copyright holder who authorizes use under this 470 | License of the Program or a work on which the Program is based. The 471 | work thus licensed is called the contributor's "contributor version". 472 | 473 | A contributor's "essential patent claims" are all patent claims owned 474 | or controlled by the contributor, whether already acquired or 475 | hereafter acquired, that would be infringed by some manner, permitted 476 | by this License, of making, using, or selling its contributor version, 477 | but do not include claims that would be infringed only as a 478 | consequence of further modification of the contributor version. For 479 | purposes of this definition, "control" includes the right to grant 480 | patent sublicenses in a manner consistent with the requirements of 481 | this License. 482 | 483 | Each contributor grants you a non-exclusive, worldwide, royalty-free 484 | patent license under the contributor's essential patent claims, to 485 | make, use, sell, offer for sale, import and otherwise run, modify and 486 | propagate the contents of its contributor version. 487 | 488 | In the following three paragraphs, a "patent license" is any express 489 | agreement or commitment, however denominated, not to enforce a patent 490 | (such as an express permission to practice a patent or covenant not to 491 | sue for patent infringement). To "grant" such a patent license to a 492 | party means to make such an agreement or commitment not to enforce a 493 | patent against the party. 494 | 495 | If you convey a covered work, knowingly relying on a patent license, 496 | and the Corresponding Source of the work is not available for anyone 497 | to copy, free of charge and under the terms of this License, through a 498 | publicly available network server or other readily accessible means, 499 | then you must either (1) cause the Corresponding Source to be so 500 | available, or (2) arrange to deprive yourself of the benefit of the 501 | patent license for this particular work, or (3) arrange, in a manner 502 | consistent with the requirements of this License, to extend the patent 503 | license to downstream recipients. "Knowingly relying" means you have 504 | actual knowledge that, but for the patent license, your conveying the 505 | covered work in a country, or your recipient's use of the covered work 506 | in a country, would infringe one or more identifiable patents in that 507 | country that you have reason to believe are valid. 508 | 509 | If, pursuant to or in connection with a single transaction or 510 | arrangement, you convey, or propagate by procuring conveyance of, a 511 | covered work, and grant a patent license to some of the parties 512 | receiving the covered work authorizing them to use, propagate, modify 513 | or convey a specific copy of the covered work, then the patent license 514 | you grant is automatically extended to all recipients of the covered 515 | work and works based on it. 516 | 517 | A patent license is "discriminatory" if it does not include within the 518 | scope of its coverage, prohibits the exercise of, or is conditioned on 519 | the non-exercise of one or more of the rights that are specifically 520 | granted under this License. You may not convey a covered work if you 521 | are a party to an arrangement with a third party that is in the 522 | business of distributing software, under which you make payment to the 523 | third party based on the extent of your activity of conveying the 524 | work, and under which the third party grants, to any of the parties 525 | who would receive the covered work from you, a discriminatory patent 526 | license (a) in connection with copies of the covered work conveyed by 527 | you (or copies made from those copies), or (b) primarily for and in 528 | connection with specific products or compilations that contain the 529 | covered work, unless you entered into that arrangement, or that patent 530 | license was granted, prior to 28 March 2007. 531 | 532 | Nothing in this License shall be construed as excluding or limiting 533 | any implied license or other defenses to infringement that may 534 | otherwise be available to you under applicable patent law. 535 | 536 | ### 12. No Surrender of Others' Freedom 537 | 538 | If conditions are imposed on you (whether by court order, agreement or 539 | otherwise) that contradict the conditions of this License, they do not 540 | excuse you from the conditions of this License. If you cannot convey a 541 | covered work so as to satisfy simultaneously your obligations under 542 | this License and any other pertinent obligations, then as a 543 | consequence you may not convey it at all. For example, if you agree to 544 | terms that obligate you to collect a royalty for further conveying 545 | from those to whom you convey the Program, the only way you could 546 | satisfy both those terms and this License would be to refrain entirely 547 | from conveying the Program. 548 | 549 | ### 13. Use with the GNU Affero General Public License 550 | 551 | Notwithstanding any other provision of this License, you have 552 | permission to link or combine any covered work with a work licensed 553 | under version 3 of the GNU Affero General Public License into a single 554 | combined work, and to convey the resulting work. The terms of this 555 | License will continue to apply to the part which is the covered work, 556 | but the special requirements of the GNU Affero General Public License, 557 | section 13, concerning interaction through a network will apply to the 558 | combination as such. 559 | 560 | ### 14. Revised Versions of this License 561 | 562 | The Free Software Foundation may publish revised and/or new versions 563 | of the GNU General Public License from time to time. Such new versions 564 | will be similar in spirit to the present version, but may differ in 565 | detail to address new problems or concerns. 566 | 567 | Each version is given a distinguishing version number. If the Program 568 | specifies that a certain numbered version of the GNU General Public 569 | License "or any later version" applies to it, you have the option of 570 | following the terms and conditions either of that numbered version or 571 | of any later version published by the Free Software Foundation. If the 572 | Program does not specify a version number of the GNU General Public 573 | License, you may choose any version ever published by the Free 574 | Software Foundation. 575 | 576 | If the Program specifies that a proxy can decide which future versions 577 | of the GNU General Public License can be used, that proxy's public 578 | statement of acceptance of a version permanently authorizes you to 579 | choose that version for the Program. 580 | 581 | Later license versions may give you additional or different 582 | permissions. However, no additional obligations are imposed on any 583 | author or copyright holder as a result of your choosing to follow a 584 | later version. 585 | 586 | ### 15. Disclaimer of Warranty 587 | 588 | THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY 589 | APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT 590 | HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT 591 | WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT 592 | LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR 593 | A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND 594 | PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE 595 | DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR 596 | CORRECTION. 597 | 598 | ### 16. Limitation of Liability 599 | 600 | IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING 601 | WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR 602 | CONVEYS THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, 603 | INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES 604 | ARISING OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT 605 | NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR 606 | LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM 607 | TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF SUCH HOLDER OR OTHER 608 | PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. 609 | 610 | ### 17. Interpretation of Sections 15 and 16 611 | 612 | If the disclaimer of warranty and limitation of liability provided 613 | above cannot be given local legal effect according to their terms, 614 | reviewing courts shall apply local law that most closely approximates 615 | an absolute waiver of all civil liability in connection with the 616 | Program, unless a warranty or assumption of liability accompanies a 617 | copy of the Program in return for a fee. 618 | 619 | END OF TERMS AND CONDITIONS 620 | 621 | ## How to Apply These Terms to Your New Programs 622 | 623 | If you develop a new program, and you want it to be of the greatest 624 | possible use to the public, the best way to achieve this is to make it 625 | free software which everyone can redistribute and change under these 626 | terms. 627 | 628 | To do so, attach the following notices to the program. It is safest to 629 | attach them to the start of each source file to most effectively state 630 | the exclusion of warranty; and each file should have at least the 631 | "copyright" line and a pointer to where the full notice is found. 632 | 633 | 634 | Copyright (C) 635 | 636 | This program is free software: you can redistribute it and/or modify 637 | it under the terms of the GNU General Public License as published by 638 | the Free Software Foundation, either version 3 of the License, or 639 | (at your option) any later version. 640 | 641 | This program is distributed in the hope that it will be useful, 642 | but WITHOUT ANY WARRANTY; without even the implied warranty of 643 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 644 | GNU General Public License for more details. 645 | 646 | You should have received a copy of the GNU General Public License 647 | along with this program. If not, see . 648 | 649 | Also add information on how to contact you by electronic and paper 650 | mail. 651 | 652 | If the program does terminal interaction, make it output a short 653 | notice like this when it starts in an interactive mode: 654 | 655 | Copyright (C) 656 | This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. 657 | This is free software, and you are welcome to redistribute it 658 | under certain conditions; type `show c' for details. 659 | 660 | The hypothetical commands \`show w' and \`show c' should show the 661 | appropriate parts of the General Public License. Of course, your 662 | program's commands might be different; for a GUI interface, you would 663 | use an "about box". 664 | 665 | You should also get your employer (if you work as a programmer) or 666 | school, if any, to sign a "copyright disclaimer" for the program, if 667 | necessary. For more information on this, and how to apply and follow 668 | the GNU GPL, see . 669 | 670 | The GNU General Public License does not permit incorporating your 671 | program into proprietary programs. If your program is a subroutine 672 | library, you may consider it more useful to permit linking proprietary 673 | applications with the library. If this is what you want to do, use the 674 | GNU Lesser General Public License instead of this License. But first, 675 | please read . 676 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Youtube Comment Blacklist 2 | 3 | [![GreasyFork](https://img.shields.io/badge/dynamic/json?color=%23990000&label=GreasyFork&query=total_installs&suffix=%20installs&url=https%3A%2F%2Fgreasyfork.org%2Fscripts%2F411035.json)](https://greasyfork.org/scripts/411035) 4 | [![OpenUserJS](https://img.shields.io/badge/dynamic/json?color=%232c3e50&label=OpenUserJS&query=%24.OpenUserJS.installs%5B0%5D.value&suffix=%20installs&url=https%3A%2F%2Fopenuserjs.org%2Fmeta%2FNatoBoram%2FYouTube_Comment_Blacklist.meta.json)](https://openuserjs.org/scripts/NatoBoram/YouTube_Comment_Blacklist) 5 | [![Patreon](https://img.shields.io/badge/dynamic/json?color=%23e85b46&label=Patreon&query=data.attributes.patron_count&suffix=%20patrons&url=https%3A%2F%2Fwww.patreon.com%2Fapi%2Fcampaigns%2F122229)](https://www.patreon.com/NatoBoram) 6 | [![Maintainability](https://api.codeclimate.com/v1/badges/a0660d3605f6efd00749/maintainability)](https://codeclimate.com/github/NatoBoram/youtube-comment-blacklist/maintainability) 7 | [![License](https://img.shields.io/github/license/NatoBoram/youtube-comment-blacklist)](https://github.com/NatoBoram/youtube-comment-blacklist/blob/master/LICENSE.md) 8 | [![Stars](https://img.shields.io/github/stars/NatoBoram/youtube-comment-blacklist?style=social)](https://github.com/NatoBoram/youtube-comment-blacklist/stargazers) 9 | 10 | Removes unoriginal YouTube comments. 11 | 12 | ![Example](https://raw.githubusercontent.com/NatoBoram/youtube-comment-blacklist/master/images/example.png) 13 | 14 | ## Installation 15 | 16 | 1. Install [one of these](https://github.com/OpenUserJS/OpenUserJS.org/wiki/Userscript-Beginners-HOWTO#how-do-i-get-going) 17 | 2. Click [here](https://github.com/NatoBoram/youtube-comment-blacklist/raw/master/youtube-comment-blacklist.user.js) 18 | 19 | ## Usage 20 | 21 | This script runs automatically. If you encounter an issue, refresh the page. If it still doesn't work, please [raise an issue](https://github.com/NatoBoram/youtube-comment-blacklist/issues). 22 | -------------------------------------------------------------------------------- /images/example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatoBoram/youtube-comment-blacklist/845b06393807a47196e9bb955b945c2efb7cc5d6/images/example.png -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "youtube-comment-blacklist", 3 | "version": "0.0.5", 4 | "description": "Removes unoriginal YouTube comments.", 5 | "homepage": "https://github.com/NatoBoram/youtube-comment-blacklist", 6 | "bugs": { 7 | "url": "https://github.com/NatoBoram/youtube-comment-blacklist/issues" 8 | }, 9 | "license": "GPL-3.0-or-later", 10 | "author": { 11 | "name": "Nato Boram", 12 | "url": "https://github.com/NatoBoram" 13 | }, 14 | "repository": "github:NatoBoram/youtube-comment-blacklist", 15 | "scripts": { 16 | "eslint": "eslint youtube-comment-blacklist.user.js" 17 | }, 18 | "devDependencies": { 19 | "@types/greasemonkey": "^4.0.2", 20 | "@types/tampermonkey": "^4.0.2", 21 | "eslint": "^7.31.0" 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- 1 | lockfileVersion: '6.0' 2 | 3 | settings: 4 | autoInstallPeers: true 5 | excludeLinksFromLockfile: false 6 | 7 | devDependencies: 8 | '@types/greasemonkey': 9 | specifier: ^4.0.2 10 | version: 4.0.2 11 | '@types/tampermonkey': 12 | specifier: ^4.0.2 13 | version: 4.0.2 14 | eslint: 15 | specifier: ^7.31.0 16 | version: 7.31.0 17 | 18 | packages: 19 | 20 | /@babel/code-frame@7.12.11: 21 | resolution: {integrity: sha512-Zt1yodBx1UcyiePMSkWnU4hPqhwq7hGi2nFL1LeA3EUl+q2LQx16MISgJ0+z7dnmgvP9QtIleuETGOiOH1RcIw==} 22 | dependencies: 23 | '@babel/highlight': 7.14.5 24 | dev: true 25 | 26 | /@babel/helper-validator-identifier@7.14.8: 27 | resolution: {integrity: sha512-ZGy6/XQjllhYQrNw/3zfWRwZCTVSiBLZ9DHVZxn9n2gip/7ab8mv2TWlKPIBk26RwedCBoWdjLmn+t9na2Gcow==} 28 | engines: {node: '>=6.9.0'} 29 | dev: true 30 | 31 | /@babel/highlight@7.14.5: 32 | resolution: {integrity: sha512-qf9u2WFWVV0MppaL877j2dBtQIDgmidgjGk5VIMw3OadXvYaXn66U1BFlH2t4+t3i+8PhedppRv+i40ABzd+gg==} 33 | engines: {node: '>=6.9.0'} 34 | dependencies: 35 | '@babel/helper-validator-identifier': 7.14.8 36 | chalk: 2.4.2 37 | js-tokens: 4.0.0 38 | dev: true 39 | 40 | /@eslint/eslintrc@0.4.3: 41 | resolution: {integrity: sha512-J6KFFz5QCYUJq3pf0mjEcCJVERbzv71PUIDczuh9JkwGEzced6CO5ADLHB1rbf/+oPBtoPfMYNOpGDzCANlbXw==} 42 | engines: {node: ^10.12.0 || >=12.0.0} 43 | dependencies: 44 | ajv: 6.12.6 45 | debug: 4.3.2 46 | espree: 7.3.1 47 | globals: 13.10.0 48 | ignore: 4.0.6 49 | import-fresh: 3.3.0 50 | js-yaml: 3.14.1 51 | minimatch: 3.0.4 52 | strip-json-comments: 3.1.1 53 | transitivePeerDependencies: 54 | - supports-color 55 | dev: true 56 | 57 | /@humanwhocodes/config-array@0.5.0: 58 | resolution: {integrity: sha512-FagtKFz74XrTl7y6HCzQpwDfXP0yhxe9lHLD1UZxjvZIcbyRz8zTFF/yYNfSfzU414eDwZ1SrO0Qvtyf+wFMQg==} 59 | engines: {node: '>=10.10.0'} 60 | dependencies: 61 | '@humanwhocodes/object-schema': 1.2.0 62 | debug: 4.3.2 63 | minimatch: 3.0.4 64 | transitivePeerDependencies: 65 | - supports-color 66 | dev: true 67 | 68 | /@humanwhocodes/object-schema@1.2.0: 69 | resolution: {integrity: sha512-wdppn25U8z/2yiaT6YGquE6X8sSv7hNMWSXYSSU1jGv/yd6XqjXgTDJ8KP4NgjTXfJ3GbRjeeb8RTV7a/VpM+w==} 70 | dev: true 71 | 72 | /@types/greasemonkey@4.0.2: 73 | resolution: {integrity: sha512-aCdl08liJA/GaT5xH8bhqbGCG6HCRU/jqs3QuJcMOsSxBDgbiif3LVLI7AF7FekPN3XxGevRHSw7ov8ITKf4Hw==} 74 | dev: true 75 | 76 | /@types/tampermonkey@4.0.2: 77 | resolution: {integrity: sha512-KMDDTaT3UXDNwYFF2MKAe5s4HsAEZeRw/aidZdEeaddN5sf83wFddG3gF/QYmJ8Cm9YPwAHF65rwNd12DBQw8w==} 78 | dev: true 79 | 80 | /acorn-jsx@5.3.2(acorn@7.4.1): 81 | resolution: {integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==} 82 | peerDependencies: 83 | acorn: ^6.0.0 || ^7.0.0 || ^8.0.0 84 | dependencies: 85 | acorn: 7.4.1 86 | dev: true 87 | 88 | /acorn@7.4.1: 89 | resolution: {integrity: sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==} 90 | engines: {node: '>=0.4.0'} 91 | hasBin: true 92 | dev: true 93 | 94 | /ajv@6.12.6: 95 | resolution: {integrity: sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==} 96 | dependencies: 97 | fast-deep-equal: 3.1.3 98 | fast-json-stable-stringify: 2.1.0 99 | json-schema-traverse: 0.4.1 100 | uri-js: 4.4.1 101 | dev: true 102 | 103 | /ajv@8.6.2: 104 | resolution: {integrity: sha512-9807RlWAgT564wT+DjeyU5OFMPjmzxVobvDFmNAhY+5zD6A2ly3jDp6sgnfyDtlIQ+7H97oc/DGCzzfu9rjw9w==} 105 | dependencies: 106 | fast-deep-equal: 3.1.3 107 | json-schema-traverse: 1.0.0 108 | require-from-string: 2.0.2 109 | uri-js: 4.4.1 110 | dev: true 111 | 112 | /ansi-colors@4.1.1: 113 | resolution: {integrity: sha512-JoX0apGbHaUJBNl6yF+p6JAFYZ666/hhCGKN5t9QFjbJQKUU/g8MNbFDbvfrgKXvI1QpZplPOnwIo99lX/AAmA==} 114 | engines: {node: '>=6'} 115 | dev: true 116 | 117 | /ansi-regex@5.0.1: 118 | resolution: {integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==} 119 | engines: {node: '>=8'} 120 | dev: true 121 | 122 | /ansi-styles@3.2.1: 123 | resolution: {integrity: sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==} 124 | engines: {node: '>=4'} 125 | dependencies: 126 | color-convert: 1.9.3 127 | dev: true 128 | 129 | /ansi-styles@4.3.0: 130 | resolution: {integrity: sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==} 131 | engines: {node: '>=8'} 132 | dependencies: 133 | color-convert: 2.0.1 134 | dev: true 135 | 136 | /argparse@1.0.10: 137 | resolution: {integrity: sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==} 138 | dependencies: 139 | sprintf-js: 1.0.3 140 | dev: true 141 | 142 | /astral-regex@2.0.0: 143 | resolution: {integrity: sha512-Z7tMw1ytTXt5jqMcOP+OQteU1VuNK9Y02uuJtKQ1Sv69jXQKKg5cibLwGJow8yzZP+eAc18EmLGPal0bp36rvQ==} 144 | engines: {node: '>=8'} 145 | dev: true 146 | 147 | /balanced-match@1.0.2: 148 | resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==} 149 | dev: true 150 | 151 | /brace-expansion@1.1.11: 152 | resolution: {integrity: sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==} 153 | dependencies: 154 | balanced-match: 1.0.2 155 | concat-map: 0.0.1 156 | dev: true 157 | 158 | /callsites@3.1.0: 159 | resolution: {integrity: sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==} 160 | engines: {node: '>=6'} 161 | dev: true 162 | 163 | /chalk@2.4.2: 164 | resolution: {integrity: sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==} 165 | engines: {node: '>=4'} 166 | dependencies: 167 | ansi-styles: 3.2.1 168 | escape-string-regexp: 1.0.5 169 | supports-color: 5.5.0 170 | dev: true 171 | 172 | /chalk@4.1.1: 173 | resolution: {integrity: sha512-diHzdDKxcU+bAsUboHLPEDQiw0qEe0qd7SYUn3HgcFlWgbDcfLGswOHYeGrHKzG9z6UYf01d9VFMfZxPM1xZSg==} 174 | engines: {node: '>=10'} 175 | dependencies: 176 | ansi-styles: 4.3.0 177 | supports-color: 7.2.0 178 | dev: true 179 | 180 | /color-convert@1.9.3: 181 | resolution: {integrity: sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==} 182 | dependencies: 183 | color-name: 1.1.3 184 | dev: true 185 | 186 | /color-convert@2.0.1: 187 | resolution: {integrity: sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==} 188 | engines: {node: '>=7.0.0'} 189 | dependencies: 190 | color-name: 1.1.4 191 | dev: true 192 | 193 | /color-name@1.1.3: 194 | resolution: {integrity: sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=} 195 | dev: true 196 | 197 | /color-name@1.1.4: 198 | resolution: {integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==} 199 | dev: true 200 | 201 | /concat-map@0.0.1: 202 | resolution: {integrity: sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=} 203 | dev: true 204 | 205 | /cross-spawn@7.0.3: 206 | resolution: {integrity: sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==} 207 | engines: {node: '>= 8'} 208 | dependencies: 209 | path-key: 3.1.1 210 | shebang-command: 2.0.0 211 | which: 2.0.2 212 | dev: true 213 | 214 | /debug@4.3.2: 215 | resolution: {integrity: sha512-mOp8wKcvj7XxC78zLgw/ZA+6TSgkoE2C/ienthhRD298T7UNwAg9diBpLRxC0mOezLl4B0xV7M0cCO6P/O0Xhw==} 216 | engines: {node: '>=6.0'} 217 | peerDependencies: 218 | supports-color: '*' 219 | peerDependenciesMeta: 220 | supports-color: 221 | optional: true 222 | dependencies: 223 | ms: 2.1.2 224 | dev: true 225 | 226 | /deep-is@0.1.3: 227 | resolution: {integrity: sha1-s2nW+128E+7PUk+RsHD+7cNXzzQ=} 228 | dev: true 229 | 230 | /doctrine@3.0.0: 231 | resolution: {integrity: sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==} 232 | engines: {node: '>=6.0.0'} 233 | dependencies: 234 | esutils: 2.0.3 235 | dev: true 236 | 237 | /emoji-regex@8.0.0: 238 | resolution: {integrity: sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==} 239 | dev: true 240 | 241 | /enquirer@2.3.6: 242 | resolution: {integrity: sha512-yjNnPr315/FjS4zIsUxYguYUPP2e1NK4d7E7ZOLiyYCcbFBiTMyID+2wvm2w6+pZ/odMA7cRkjhsPbltwBOrLg==} 243 | engines: {node: '>=8.6'} 244 | dependencies: 245 | ansi-colors: 4.1.1 246 | dev: true 247 | 248 | /escape-string-regexp@1.0.5: 249 | resolution: {integrity: sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ=} 250 | engines: {node: '>=0.8.0'} 251 | dev: true 252 | 253 | /escape-string-regexp@4.0.0: 254 | resolution: {integrity: sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==} 255 | engines: {node: '>=10'} 256 | dev: true 257 | 258 | /eslint-scope@5.1.1: 259 | resolution: {integrity: sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==} 260 | engines: {node: '>=8.0.0'} 261 | dependencies: 262 | esrecurse: 4.3.0 263 | estraverse: 4.3.0 264 | dev: true 265 | 266 | /eslint-utils@2.1.0: 267 | resolution: {integrity: sha512-w94dQYoauyvlDc43XnGB8lU3Zt713vNChgt4EWwhXAP2XkBvndfxF0AgIqKOOasjPIPzj9JqgwkwbCYD0/V3Zg==} 268 | engines: {node: '>=6'} 269 | dependencies: 270 | eslint-visitor-keys: 1.3.0 271 | dev: true 272 | 273 | /eslint-visitor-keys@1.3.0: 274 | resolution: {integrity: sha512-6J72N8UNa462wa/KFODt/PJ3IU60SDpC3QXC1Hjc1BXXpfL2C9R5+AU7jhe0F6GREqVMh4Juu+NY7xn+6dipUQ==} 275 | engines: {node: '>=4'} 276 | dev: true 277 | 278 | /eslint-visitor-keys@2.1.0: 279 | resolution: {integrity: sha512-0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw==} 280 | engines: {node: '>=10'} 281 | dev: true 282 | 283 | /eslint@7.31.0: 284 | resolution: {integrity: sha512-vafgJpSh2ia8tnTkNUkwxGmnumgckLh5aAbLa1xRmIn9+owi8qBNGKL+B881kNKNTy7FFqTEkpNkUvmw0n6PkA==} 285 | engines: {node: ^10.12.0 || >=12.0.0} 286 | hasBin: true 287 | dependencies: 288 | '@babel/code-frame': 7.12.11 289 | '@eslint/eslintrc': 0.4.3 290 | '@humanwhocodes/config-array': 0.5.0 291 | ajv: 6.12.6 292 | chalk: 4.1.1 293 | cross-spawn: 7.0.3 294 | debug: 4.3.2 295 | doctrine: 3.0.0 296 | enquirer: 2.3.6 297 | escape-string-regexp: 4.0.0 298 | eslint-scope: 5.1.1 299 | eslint-utils: 2.1.0 300 | eslint-visitor-keys: 2.1.0 301 | espree: 7.3.1 302 | esquery: 1.4.0 303 | esutils: 2.0.3 304 | fast-deep-equal: 3.1.3 305 | file-entry-cache: 6.0.1 306 | functional-red-black-tree: 1.0.1 307 | glob-parent: 5.1.2 308 | globals: 13.10.0 309 | ignore: 4.0.6 310 | import-fresh: 3.3.0 311 | imurmurhash: 0.1.4 312 | is-glob: 4.0.1 313 | js-yaml: 3.14.1 314 | json-stable-stringify-without-jsonify: 1.0.1 315 | levn: 0.4.1 316 | lodash.merge: 4.6.2 317 | minimatch: 3.0.4 318 | natural-compare: 1.4.0 319 | optionator: 0.9.1 320 | progress: 2.0.3 321 | regexpp: 3.2.0 322 | semver: 7.3.5 323 | strip-ansi: 6.0.0 324 | strip-json-comments: 3.1.1 325 | table: 6.7.1 326 | text-table: 0.2.0 327 | v8-compile-cache: 2.3.0 328 | transitivePeerDependencies: 329 | - supports-color 330 | dev: true 331 | 332 | /espree@7.3.1: 333 | resolution: {integrity: sha512-v3JCNCE64umkFpmkFGqzVKsOT0tN1Zr+ueqLZfpV1Ob8e+CEgPWa+OxCoGH3tnhimMKIaBm4m/vaRpJ/krRz2g==} 334 | engines: {node: ^10.12.0 || >=12.0.0} 335 | dependencies: 336 | acorn: 7.4.1 337 | acorn-jsx: 5.3.2(acorn@7.4.1) 338 | eslint-visitor-keys: 1.3.0 339 | dev: true 340 | 341 | /esprima@4.0.1: 342 | resolution: {integrity: sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==} 343 | engines: {node: '>=4'} 344 | hasBin: true 345 | dev: true 346 | 347 | /esquery@1.4.0: 348 | resolution: {integrity: sha512-cCDispWt5vHHtwMY2YrAQ4ibFkAL8RbH5YGBnZBc90MolvvfkkQcJro/aZiAQUlQ3qgrYS6D6v8Gc5G5CQsc9w==} 349 | engines: {node: '>=0.10'} 350 | dependencies: 351 | estraverse: 5.2.0 352 | dev: true 353 | 354 | /esrecurse@4.3.0: 355 | resolution: {integrity: sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==} 356 | engines: {node: '>=4.0'} 357 | dependencies: 358 | estraverse: 5.2.0 359 | dev: true 360 | 361 | /estraverse@4.3.0: 362 | resolution: {integrity: sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==} 363 | engines: {node: '>=4.0'} 364 | dev: true 365 | 366 | /estraverse@5.2.0: 367 | resolution: {integrity: sha512-BxbNGGNm0RyRYvUdHpIwv9IWzeM9XClbOxwoATuFdOE7ZE6wHL+HQ5T8hoPM+zHvmKzzsEqhgy0GrQ5X13afiQ==} 368 | engines: {node: '>=4.0'} 369 | dev: true 370 | 371 | /esutils@2.0.3: 372 | resolution: {integrity: sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==} 373 | engines: {node: '>=0.10.0'} 374 | dev: true 375 | 376 | /fast-deep-equal@3.1.3: 377 | resolution: {integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==} 378 | dev: true 379 | 380 | /fast-json-stable-stringify@2.1.0: 381 | resolution: {integrity: sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==} 382 | dev: true 383 | 384 | /fast-levenshtein@2.0.6: 385 | resolution: {integrity: sha1-PYpcZog6FqMMqGQ+hR8Zuqd5eRc=} 386 | dev: true 387 | 388 | /file-entry-cache@6.0.1: 389 | resolution: {integrity: sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==} 390 | engines: {node: ^10.12.0 || >=12.0.0} 391 | dependencies: 392 | flat-cache: 3.0.4 393 | dev: true 394 | 395 | /flat-cache@3.0.4: 396 | resolution: {integrity: sha512-dm9s5Pw7Jc0GvMYbshN6zchCA9RgQlzzEZX3vylR9IqFfS8XciblUXOKfW6SiuJ0e13eDYZoZV5wdrev7P3Nwg==} 397 | engines: {node: ^10.12.0 || >=12.0.0} 398 | dependencies: 399 | flatted: 3.2.1 400 | rimraf: 3.0.2 401 | dev: true 402 | 403 | /flatted@3.2.1: 404 | resolution: {integrity: sha512-OMQjaErSFHmHqZe+PSidH5n8j3O0F2DdnVh8JB4j4eUQ2k6KvB0qGfrKIhapvez5JerBbmWkaLYUYWISaESoXg==} 405 | dev: true 406 | 407 | /fs.realpath@1.0.0: 408 | resolution: {integrity: sha1-FQStJSMVjKpA20onh8sBQRmU6k8=} 409 | dev: true 410 | 411 | /functional-red-black-tree@1.0.1: 412 | resolution: {integrity: sha1-GwqzvVU7Kg1jmdKcDj6gslIHgyc=} 413 | dev: true 414 | 415 | /glob-parent@5.1.2: 416 | resolution: {integrity: sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==} 417 | engines: {node: '>= 6'} 418 | dependencies: 419 | is-glob: 4.0.1 420 | dev: true 421 | 422 | /glob@7.1.7: 423 | resolution: {integrity: sha512-OvD9ENzPLbegENnYP5UUfJIirTg4+XwMWGaQfQTY0JenxNvvIKP3U3/tAQSPIu/lHxXYSZmpXlUHeqAIdKzBLQ==} 424 | dependencies: 425 | fs.realpath: 1.0.0 426 | inflight: 1.0.6 427 | inherits: 2.0.4 428 | minimatch: 3.0.4 429 | once: 1.4.0 430 | path-is-absolute: 1.0.1 431 | dev: true 432 | 433 | /globals@13.10.0: 434 | resolution: {integrity: sha512-piHC3blgLGFjvOuMmWZX60f+na1lXFDhQXBf1UYp2fXPXqvEUbOhNwi6BsQ0bQishwedgnjkwv1d9zKf+MWw3g==} 435 | engines: {node: '>=8'} 436 | dependencies: 437 | type-fest: 0.20.2 438 | dev: true 439 | 440 | /has-flag@3.0.0: 441 | resolution: {integrity: sha1-tdRU3CGZriJWmfNGfloH87lVuv0=} 442 | engines: {node: '>=4'} 443 | dev: true 444 | 445 | /has-flag@4.0.0: 446 | resolution: {integrity: sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==} 447 | engines: {node: '>=8'} 448 | dev: true 449 | 450 | /ignore@4.0.6: 451 | resolution: {integrity: sha512-cyFDKrqc/YdcWFniJhzI42+AzS+gNwmUzOSFcRCQYwySuBBBy/KjuxWLZ/FHEH6Moq1NizMOBWyTcv8O4OZIMg==} 452 | engines: {node: '>= 4'} 453 | dev: true 454 | 455 | /import-fresh@3.3.0: 456 | resolution: {integrity: sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==} 457 | engines: {node: '>=6'} 458 | dependencies: 459 | parent-module: 1.0.1 460 | resolve-from: 4.0.0 461 | dev: true 462 | 463 | /imurmurhash@0.1.4: 464 | resolution: {integrity: sha1-khi5srkoojixPcT7a21XbyMUU+o=} 465 | engines: {node: '>=0.8.19'} 466 | dev: true 467 | 468 | /inflight@1.0.6: 469 | resolution: {integrity: sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk=} 470 | dependencies: 471 | once: 1.4.0 472 | wrappy: 1.0.2 473 | dev: true 474 | 475 | /inherits@2.0.4: 476 | resolution: {integrity: sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==} 477 | dev: true 478 | 479 | /is-extglob@2.1.1: 480 | resolution: {integrity: sha1-qIwCU1eR8C7TfHahueqXc8gz+MI=} 481 | engines: {node: '>=0.10.0'} 482 | dev: true 483 | 484 | /is-fullwidth-code-point@3.0.0: 485 | resolution: {integrity: sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==} 486 | engines: {node: '>=8'} 487 | dev: true 488 | 489 | /is-glob@4.0.1: 490 | resolution: {integrity: sha512-5G0tKtBTFImOqDnLB2hG6Bp2qcKEFduo4tZu9MT/H6NQv/ghhy30o55ufafxJ/LdH79LLs2Kfrn85TLKyA7BUg==} 491 | engines: {node: '>=0.10.0'} 492 | dependencies: 493 | is-extglob: 2.1.1 494 | dev: true 495 | 496 | /isexe@2.0.0: 497 | resolution: {integrity: sha1-6PvzdNxVb/iUehDcsFctYz8s+hA=} 498 | dev: true 499 | 500 | /js-tokens@4.0.0: 501 | resolution: {integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==} 502 | dev: true 503 | 504 | /js-yaml@3.14.1: 505 | resolution: {integrity: sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==} 506 | hasBin: true 507 | dependencies: 508 | argparse: 1.0.10 509 | esprima: 4.0.1 510 | dev: true 511 | 512 | /json-schema-traverse@0.4.1: 513 | resolution: {integrity: sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==} 514 | dev: true 515 | 516 | /json-schema-traverse@1.0.0: 517 | resolution: {integrity: sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==} 518 | dev: true 519 | 520 | /json-stable-stringify-without-jsonify@1.0.1: 521 | resolution: {integrity: sha1-nbe1lJatPzz+8wp1FC0tkwrXJlE=} 522 | dev: true 523 | 524 | /levn@0.4.1: 525 | resolution: {integrity: sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==} 526 | engines: {node: '>= 0.8.0'} 527 | dependencies: 528 | prelude-ls: 1.2.1 529 | type-check: 0.4.0 530 | dev: true 531 | 532 | /lodash.clonedeep@4.5.0: 533 | resolution: {integrity: sha1-4j8/nE+Pvd6HJSnBBxhXoIblzO8=} 534 | dev: true 535 | 536 | /lodash.merge@4.6.2: 537 | resolution: {integrity: sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==} 538 | dev: true 539 | 540 | /lodash.truncate@4.4.2: 541 | resolution: {integrity: sha1-WjUNoLERO4N+z//VgSy+WNbq4ZM=} 542 | dev: true 543 | 544 | /lru-cache@6.0.0: 545 | resolution: {integrity: sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==} 546 | engines: {node: '>=10'} 547 | dependencies: 548 | yallist: 4.0.0 549 | dev: true 550 | 551 | /minimatch@3.0.4: 552 | resolution: {integrity: sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA==} 553 | dependencies: 554 | brace-expansion: 1.1.11 555 | dev: true 556 | 557 | /ms@2.1.2: 558 | resolution: {integrity: sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==} 559 | dev: true 560 | 561 | /natural-compare@1.4.0: 562 | resolution: {integrity: sha1-Sr6/7tdUHywnrPspvbvRXI1bpPc=} 563 | dev: true 564 | 565 | /once@1.4.0: 566 | resolution: {integrity: sha1-WDsap3WWHUsROsF9nFC6753Xa9E=} 567 | dependencies: 568 | wrappy: 1.0.2 569 | dev: true 570 | 571 | /optionator@0.9.1: 572 | resolution: {integrity: sha512-74RlY5FCnhq4jRxVUPKDaRwrVNXMqsGsiW6AJw4XK8hmtm10wC0ypZBLw5IIp85NZMr91+qd1RvvENwg7jjRFw==} 573 | engines: {node: '>= 0.8.0'} 574 | dependencies: 575 | deep-is: 0.1.3 576 | fast-levenshtein: 2.0.6 577 | levn: 0.4.1 578 | prelude-ls: 1.2.1 579 | type-check: 0.4.0 580 | word-wrap: 1.2.5 581 | dev: true 582 | 583 | /parent-module@1.0.1: 584 | resolution: {integrity: sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==} 585 | engines: {node: '>=6'} 586 | dependencies: 587 | callsites: 3.1.0 588 | dev: true 589 | 590 | /path-is-absolute@1.0.1: 591 | resolution: {integrity: sha1-F0uSaHNVNP+8es5r9TpanhtcX18=} 592 | engines: {node: '>=0.10.0'} 593 | dev: true 594 | 595 | /path-key@3.1.1: 596 | resolution: {integrity: sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==} 597 | engines: {node: '>=8'} 598 | dev: true 599 | 600 | /prelude-ls@1.2.1: 601 | resolution: {integrity: sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==} 602 | engines: {node: '>= 0.8.0'} 603 | dev: true 604 | 605 | /progress@2.0.3: 606 | resolution: {integrity: sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA==} 607 | engines: {node: '>=0.4.0'} 608 | dev: true 609 | 610 | /punycode@2.1.1: 611 | resolution: {integrity: sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A==} 612 | engines: {node: '>=6'} 613 | dev: true 614 | 615 | /regexpp@3.2.0: 616 | resolution: {integrity: sha512-pq2bWo9mVD43nbts2wGv17XLiNLya+GklZ8kaDLV2Z08gDCsGpnKn9BFMepvWuHCbyVvY7J5o5+BVvoQbmlJLg==} 617 | engines: {node: '>=8'} 618 | dev: true 619 | 620 | /require-from-string@2.0.2: 621 | resolution: {integrity: sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==} 622 | engines: {node: '>=0.10.0'} 623 | dev: true 624 | 625 | /resolve-from@4.0.0: 626 | resolution: {integrity: sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==} 627 | engines: {node: '>=4'} 628 | dev: true 629 | 630 | /rimraf@3.0.2: 631 | resolution: {integrity: sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==} 632 | hasBin: true 633 | dependencies: 634 | glob: 7.1.7 635 | dev: true 636 | 637 | /semver@7.3.5: 638 | resolution: {integrity: sha512-PoeGJYh8HK4BTO/a9Tf6ZG3veo/A7ZVsYrSA6J8ny9nb3B1VrpkuN+z9OE5wfE5p6H4LchYZsegiQgbJD94ZFQ==} 639 | engines: {node: '>=10'} 640 | hasBin: true 641 | dependencies: 642 | lru-cache: 6.0.0 643 | dev: true 644 | 645 | /shebang-command@2.0.0: 646 | resolution: {integrity: sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==} 647 | engines: {node: '>=8'} 648 | dependencies: 649 | shebang-regex: 3.0.0 650 | dev: true 651 | 652 | /shebang-regex@3.0.0: 653 | resolution: {integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==} 654 | engines: {node: '>=8'} 655 | dev: true 656 | 657 | /slice-ansi@4.0.0: 658 | resolution: {integrity: sha512-qMCMfhY040cVHT43K9BFygqYbUPFZKHOg7K73mtTWJRb8pyP3fzf4Ixd5SzdEJQ6MRUg/WBnOLxghZtKKurENQ==} 659 | engines: {node: '>=10'} 660 | dependencies: 661 | ansi-styles: 4.3.0 662 | astral-regex: 2.0.0 663 | is-fullwidth-code-point: 3.0.0 664 | dev: true 665 | 666 | /sprintf-js@1.0.3: 667 | resolution: {integrity: sha1-BOaSb2YolTVPPdAVIDYzuFcpfiw=} 668 | dev: true 669 | 670 | /string-width@4.2.2: 671 | resolution: {integrity: sha512-XBJbT3N4JhVumXE0eoLU9DCjcaF92KLNqTmFCnG1pf8duUxFGwtP6AD6nkjw9a3IdiRtL3E2w3JDiE/xi3vOeA==} 672 | engines: {node: '>=8'} 673 | dependencies: 674 | emoji-regex: 8.0.0 675 | is-fullwidth-code-point: 3.0.0 676 | strip-ansi: 6.0.0 677 | dev: true 678 | 679 | /strip-ansi@6.0.0: 680 | resolution: {integrity: sha512-AuvKTrTfQNYNIctbR1K/YGTR1756GycPsg7b9bdV9Duqur4gv6aKqHXah67Z8ImS7WEz5QVcOtlfW2rZEugt6w==} 681 | engines: {node: '>=8'} 682 | dependencies: 683 | ansi-regex: 5.0.1 684 | dev: true 685 | 686 | /strip-json-comments@3.1.1: 687 | resolution: {integrity: sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==} 688 | engines: {node: '>=8'} 689 | dev: true 690 | 691 | /supports-color@5.5.0: 692 | resolution: {integrity: sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==} 693 | engines: {node: '>=4'} 694 | dependencies: 695 | has-flag: 3.0.0 696 | dev: true 697 | 698 | /supports-color@7.2.0: 699 | resolution: {integrity: sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==} 700 | engines: {node: '>=8'} 701 | dependencies: 702 | has-flag: 4.0.0 703 | dev: true 704 | 705 | /table@6.7.1: 706 | resolution: {integrity: sha512-ZGum47Yi6KOOFDE8m223td53ath2enHcYLgOCjGr5ngu8bdIARQk6mN/wRMv4yMRcHnCSnHbCEha4sobQx5yWg==} 707 | engines: {node: '>=10.0.0'} 708 | dependencies: 709 | ajv: 8.6.2 710 | lodash.clonedeep: 4.5.0 711 | lodash.truncate: 4.4.2 712 | slice-ansi: 4.0.0 713 | string-width: 4.2.2 714 | strip-ansi: 6.0.0 715 | dev: true 716 | 717 | /text-table@0.2.0: 718 | resolution: {integrity: sha1-f17oI66AUgfACvLfSoTsP8+lcLQ=} 719 | dev: true 720 | 721 | /type-check@0.4.0: 722 | resolution: {integrity: sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==} 723 | engines: {node: '>= 0.8.0'} 724 | dependencies: 725 | prelude-ls: 1.2.1 726 | dev: true 727 | 728 | /type-fest@0.20.2: 729 | resolution: {integrity: sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==} 730 | engines: {node: '>=10'} 731 | dev: true 732 | 733 | /uri-js@4.4.1: 734 | resolution: {integrity: sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==} 735 | dependencies: 736 | punycode: 2.1.1 737 | dev: true 738 | 739 | /v8-compile-cache@2.3.0: 740 | resolution: {integrity: sha512-l8lCEmLcLYZh4nbunNZvQCJc5pv7+RCwa8q/LdUx8u7lsWvPDKmpodJAJNwkAhJC//dFY48KuIEmjtd4RViDrA==} 741 | dev: true 742 | 743 | /which@2.0.2: 744 | resolution: {integrity: sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==} 745 | engines: {node: '>= 8'} 746 | hasBin: true 747 | dependencies: 748 | isexe: 2.0.0 749 | dev: true 750 | 751 | /word-wrap@1.2.5: 752 | resolution: {integrity: sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==} 753 | engines: {node: '>=0.10.0'} 754 | dev: true 755 | 756 | /wrappy@1.0.2: 757 | resolution: {integrity: sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=} 758 | dev: true 759 | 760 | /yallist@4.0.0: 761 | resolution: {integrity: sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==} 762 | dev: true 763 | -------------------------------------------------------------------------------- /youtube-comment-blacklist.txt: -------------------------------------------------------------------------------- 1 | [Adblock Plus 2.0] 2 | ! Title: YouTube Comment Blacklist 3 | ! Description: Removes unoriginal YouTube comments. 4 | ! Homepage: https://github.com/NatoBoram/youtube-comment-blacklist 5 | ! License: https://github.com/NatoBoram/youtube-comment-blacklist/blob/master/LICENSE.md 6 | ! Support: https://github.com/NatoBoram/youtube-comment-blacklist/issues 7 | ! Version: 0.0.8 8 | 9 | www.youtube.com##ytd-comment-renderer:has-text(/always has been/i) 10 | www.youtube.com##ytd-comment-renderer:has-text(/has been/i) 11 | www.youtube.com##ytd-comment-renderer:has-text(/anyone ?/i) 12 | www.youtube.com##ytd-comment-renderer:has-text(/anyone?/i) 13 | www.youtube.com##ytd-comment-renderer:has-text(/can't hurt you/i) 14 | www.youtube.com##ytd-comment-renderer:has-text(/for the likes/i) 15 | www.youtube.com##ytd-comment-renderer:has-text(/funniest shit i've ever seen/i) 16 | www.youtube.com##ytd-comment-renderer:has-text(/he turned himself into a/i) 17 | www.youtube.com##ytd-comment-renderer:has-text(/i felt that/i) 18 | www.youtube.com##ytd-comment-renderer:has-text(/let's be honest/i) 19 | www.youtube.com##ytd-comment-renderer:has-text(/let that sink in/i) 20 | www.youtube.com##ytd-comment-renderer:has-text(/liker/i) 21 | www.youtube.com##ytd-comment-renderer:has-text(/modern problems/i) 22 | www.youtube.com##ytd-comment-renderer:has-text(/no likes/i) 23 | www.youtube.com##ytd-comment-renderer:has-text(/nobody's going to mention/i) 24 | www.youtube.com##ytd-comment-renderer:has-text(/of likes/i) 25 | www.youtube.com##ytd-comment-renderer:has-text(/require modern solutions/i) 26 | www.youtube.com##ytd-comment-renderer:has-text(/speaking the language of gods/i) 27 | www.youtube.com##ytd-comment-renderer:has-text(/this blew up/i) 28 | www.youtube.com##ytd-comment-renderer:has-text(/this comment blew up/i) 29 | www.youtube.com##ytd-comment-renderer:has-text(/tik tok/i) 30 | www.youtube.com##ytd-comment-renderer:has-text(/tiktok/i) 31 | www.youtube.com##ytd-comment-renderer:has-text(/underrated comment/i) 32 | www.youtube.com##ytd-comment-renderer:has-text(/watching this in/i) 33 | 34 | ! 3k likes / views 35 | www.youtube.com##ytd-comment-renderer:has-text(/\d.? (likes|views)/i) 36 | ! More than 2 newlines 37 | www.youtube.com##ytd-comment-renderer:has-text(/\n\n\n/) 38 | ! 1 week ago 39 | www.youtube.com##ytd-comment-renderer:has-text(/^(@(\w\s?)+\s)?\d+\s(minute|hour|day|week|year)s?\sago$/i) 40 | ! someone: 41 | www.youtube.com##ytd-comment-renderer:has-text(/^(\w ?)+:(\n| )/im) 42 | ! 3% useful 43 | www.youtube.com##ytd-comment-renderer:has-text(/^\d+% (\w ?)+\n/im) 44 | ! Simp 45 | www.youtube.com##ytd-comment-renderer:has-text(/simp\b/i) 46 | -------------------------------------------------------------------------------- /youtube-comment-blacklist.user.js: -------------------------------------------------------------------------------- 1 | // ==UserScript== 2 | // @name YouTube Comment Blacklist 3 | // @namespace https://github.com/NatoBoram/youtube-comment-blacklist 4 | // @version 0.0.7 5 | // @license GPL-3.0-or-later 6 | // @description Removes unoriginal YouTube comments. 7 | // @author NatoBoram 8 | // @updateURL https://github.com/NatoBoram/youtube-comment-blacklist/raw/master/youtube-comment-blacklist.user.js 9 | // @downloadURL https://github.com/NatoBoram/youtube-comment-blacklist/raw/master/youtube-comment-blacklist.user.js 10 | // @supportURL https://github.com/NatoBoram/youtube-comment-blacklist/issues 11 | // @contributionURL https://paypal.me/NatoBoram/5 12 | // @include https://www.youtube.com/watch* 13 | // @grant none 14 | // ==/UserScript== 15 | 16 | (() => { 17 | "use strict"; 18 | 19 | /** Remove the whole thread, including replies. */ 20 | const removeThread = true; 21 | 22 | /** Turn this on if you want to see which comment has been removed in the console. */ 23 | const debug = false; 24 | 25 | const bannedWords = [ 26 | "always has been", 27 | "anyone ?", 28 | "anyone?", 29 | "can't hurt you", 30 | "for the likes", 31 | "funniest shit i've ever seen", 32 | "he turned himself into a", 33 | "i felt that", 34 | "let's be honest", 35 | "let that sink in", 36 | "liker", 37 | "modern problems", 38 | "no likes", 39 | "nobody's going to mention", 40 | "of likes", 41 | "require modern solutions", 42 | "speaking the language of gods", 43 | "this blew up", 44 | "this comment blew up", 45 | "tik tok", 46 | "tiktok", 47 | "underrated comment", 48 | "watching this in", 49 | ]; 50 | 51 | const bannedRegexes = [ 52 | /\d.? (likes|views)/i, // 3k likes / views 53 | /\n\n\n/, // More than 2 newlines 54 | /^(@(\w\s?)+\s)?\d+\s(minute|hour|day|week|year)s?\sago$/i, // 1 week ago 55 | /^(\w ?)+:(\n| )/im, // someone: 56 | /^\d+% (\w ?)+\n/im, // 3% useful 57 | /simp\b/i, // Simp 58 | ]; 59 | 60 | // Wait for the comment section to load. 61 | const interval = setInterval(() => { 62 | const comments = document.querySelector("ytd-comments"); 63 | if (!comments) { return; } 64 | clearInterval(interval); 65 | 66 | new MutationObserver(() => { 67 | comments.querySelectorAll("ytd-comment-thread-renderer").forEach(thread => { 68 | thread.querySelectorAll("ytd-comment-renderer").forEach(comment => { 69 | const textContent = comment.querySelector("ytd-expander yt-formatted-string#content-text").textContent 70 | .toLowerCase() 71 | .replace("’", "'"); 72 | 73 | const found = bannedWords.find(word => 74 | textContent.includes(word)) || bannedRegexes.find(regex => textContent.match(regex) 75 | ); 76 | 77 | if (found) { 78 | if (debug) console.log(`Removing "${found}" : ${textContent}`); 79 | 80 | if (removeThread && comment.parentNode === thread) return thread.remove(); 81 | else return comment.remove(); 82 | } 83 | }); 84 | }); 85 | }).observe(comments, { childList: true, subtree: true }); 86 | }, 1000); 87 | 88 | })(); 89 | --------------------------------------------------------------------------------