├── .gitignore ├── LICENSE ├── README.md ├── chrome ├── background.js ├── block_rules.json ├── content.js ├── icons │ ├── twitch-adblock-32x32.png │ ├── twitch-adblock-48x48.png │ └── twitch-adblock-96x96.png ├── manifest.json ├── popup │ ├── discord.png │ ├── github.png │ ├── index.html │ ├── install.html │ ├── logo.png │ └── popupjs.js └── remove_video_ads.js └── firefox ├── background.js ├── content.js ├── icons ├── twitch-adblock-32x32.png ├── twitch-adblock-48x48.png └── twitch-adblock-96x96.png ├── manifest.json └── popup ├── discord.png ├── github.png ├── index.html ├── install.html ├── logo.png └── popupjs.js /.gitignore: -------------------------------------------------------------------------------- 1 | _metadata 2 | .vs 3 | *.bak -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | GNU GENERAL PUBLIC LICENSE 2 | Version 3, 29 June 2007 3 | 4 | Copyright (C) 2007 Free Software Foundation, Inc. 5 | Everyone is permitted to copy and distribute verbatim copies 6 | of this license document, but changing it is not allowed. 7 | 8 | Preamble 9 | 10 | The GNU General Public License is a free, copyleft license for 11 | software and other kinds of works. 12 | 13 | The licenses for most software and other practical works are designed 14 | to take away your freedom to share and change the works. By contrast, 15 | the GNU General Public License is intended to guarantee your freedom to 16 | share and change all versions of a program--to make sure it remains free 17 | software for all its users. We, the Free Software Foundation, use the 18 | GNU General Public License for most of our software; it applies also to 19 | any other work released this way by its authors. You can apply it to 20 | your programs, too. 21 | 22 | When we speak of free software, we are referring to freedom, not 23 | price. Our General Public Licenses are designed to make sure that you 24 | have the freedom to distribute copies of free software (and charge for 25 | them if you wish), that you receive source code or can get it if you 26 | want it, that you can change the software or use pieces of it in new 27 | free programs, and that you know you can do these things. 28 | 29 | To protect your rights, we need to prevent others from denying you 30 | these rights or asking you to surrender the rights. Therefore, you have 31 | certain responsibilities if you distribute copies of the software, or if 32 | you modify it: responsibilities to respect the freedom of others. 33 | 34 | For example, if you distribute copies of such a program, whether 35 | gratis or for a fee, you must pass on to the recipients the same 36 | freedoms that you received. You must make sure that they, too, receive 37 | or can get the source code. And you must show them these terms so they 38 | know their rights. 39 | 40 | Developers that use the GNU GPL protect your rights with two steps: 41 | (1) assert copyright on the software, and (2) offer you this License 42 | giving you legal permission to copy, distribute and/or modify it. 43 | 44 | For the developers' and authors' protection, the GPL clearly explains 45 | that there is no warranty for this free software. For both users' and 46 | authors' sake, the GPL requires that modified versions be marked as 47 | changed, so that their problems will not be attributed erroneously to 48 | authors of previous versions. 49 | 50 | Some devices are designed to deny users access to install or run 51 | modified versions of the software inside them, although the manufacturer 52 | can do so. This is fundamentally incompatible with the aim of 53 | protecting users' freedom to change the software. The systematic 54 | pattern of such abuse occurs in the area of products for individuals to 55 | use, which is precisely where it is most unacceptable. Therefore, we 56 | have designed this version of the GPL to prohibit the practice for those 57 | products. If such problems arise substantially in other domains, we 58 | stand ready to extend this provision to those domains in future versions 59 | of the GPL, as needed to protect the freedom of users. 60 | 61 | Finally, every program is threatened constantly by software patents. 62 | States should not allow patents to restrict development and use of 63 | software on general-purpose computers, but in those that do, we wish to 64 | avoid the special danger that patents applied to a free program could 65 | make it effectively proprietary. To prevent this, the GPL assures that 66 | patents cannot be used to render the program non-free. 67 | 68 | The precise terms and conditions for copying, distribution and 69 | modification follow. 70 | 71 | TERMS AND CONDITIONS 72 | 73 | 0. Definitions. 74 | 75 | "This License" refers to version 3 of the GNU General Public License. 76 | 77 | "Copyright" also means copyright-like laws that apply to other kinds of 78 | works, such as semiconductor masks. 79 | 80 | "The Program" refers to any copyrightable work licensed under this 81 | License. Each licensee is addressed as "you". "Licensees" and 82 | "recipients" may be individuals or organizations. 83 | 84 | To "modify" a work means to copy from or adapt all or part of the work 85 | in a fashion requiring copyright permission, other than the making of an 86 | exact copy. The resulting work is called a "modified version" of the 87 | earlier work or a work "based on" the earlier work. 88 | 89 | A "covered work" means either the unmodified Program or a work based 90 | on the Program. 91 | 92 | To "propagate" a work means to do anything with it that, without 93 | permission, would make you directly or secondarily liable for 94 | infringement under applicable copyright law, except executing it on a 95 | computer or modifying a private copy. Propagation includes copying, 96 | distribution (with or without modification), making available to the 97 | public, and in some countries other activities as well. 98 | 99 | To "convey" a work means any kind of propagation that enables other 100 | parties to make or receive copies. Mere interaction with a user through 101 | a computer network, with no transfer of a copy, is not conveying. 102 | 103 | An interactive user interface displays "Appropriate Legal Notices" 104 | to the extent that it includes a convenient and prominently visible 105 | feature that (1) displays an appropriate copyright notice, and (2) 106 | tells the user that there is no warranty for the work (except to the 107 | extent that warranties are provided), that licensees may convey the 108 | work under this License, and how to view a copy of this License. If 109 | the interface presents a list of user commands or options, such as a 110 | menu, a prominent item in the list meets this criterion. 111 | 112 | 1. Source Code. 113 | 114 | The "source code" for a work means the preferred form of the work 115 | for making modifications to it. "Object code" means any non-source 116 | form of a work. 117 | 118 | A "Standard Interface" means an interface that either is an official 119 | standard defined by a recognized standards body, or, in the case of 120 | interfaces specified for a particular programming language, one that 121 | is widely used among developers working in that language. 122 | 123 | The "System Libraries" of an executable work include anything, other 124 | than the work as a whole, that (a) is included in the normal form of 125 | packaging a Major Component, but which is not part of that Major 126 | Component, and (b) serves only to enable use of the work with that 127 | Major Component, or to implement a Standard Interface for which an 128 | implementation is available to the public in source code form. A 129 | "Major Component", in this context, means a major essential component 130 | (kernel, window system, and so on) of the specific operating system 131 | (if any) on which the executable work runs, or a compiler used to 132 | produce the work, or an object code interpreter used to run it. 133 | 134 | The "Corresponding Source" for a work in object code form means all 135 | the source code needed to generate, install, and (for an executable 136 | work) run the object code and to modify the work, including scripts to 137 | control those activities. However, it does not include the work's 138 | System Libraries, or general-purpose tools or generally available free 139 | programs which are used unmodified in performing those activities but 140 | which are not part of the work. For example, Corresponding Source 141 | includes interface definition files associated with source files for 142 | the work, and the source code for shared libraries and dynamically 143 | linked subprograms that the work is specifically designed to require, 144 | such as by intimate data communication or control flow between those 145 | subprograms and other parts of the work. 146 | 147 | The Corresponding Source need not include anything that users 148 | can regenerate automatically from other parts of the Corresponding 149 | Source. 150 | 151 | The Corresponding Source for a work in source code form is that 152 | same work. 153 | 154 | 2. Basic Permissions. 155 | 156 | All rights granted under this License are granted for the term of 157 | copyright on the Program, and are irrevocable provided the stated 158 | conditions are met. This License explicitly affirms your unlimited 159 | permission to run the unmodified Program. The output from running a 160 | covered work is covered by this License only if the output, given its 161 | content, constitutes a covered work. This License acknowledges your 162 | rights of fair use or other equivalent, as provided by copyright law. 163 | 164 | You may make, run and propagate covered works that you do not 165 | convey, without conditions so long as your license otherwise remains 166 | in force. You may convey covered works to others for the sole purpose 167 | of having them make modifications exclusively for you, or provide you 168 | with facilities for running those works, provided that you comply with 169 | the terms of this License in conveying all material for which you do 170 | not control copyright. Those thus making or running the covered works 171 | for you must do so exclusively on your behalf, under your direction 172 | and control, on terms that prohibit them from making any copies of 173 | your copyrighted material outside their relationship with you. 174 | 175 | Conveying under any other circumstances is permitted solely under 176 | the conditions stated below. Sublicensing is not allowed; section 10 177 | makes it unnecessary. 178 | 179 | 3. Protecting Users' Legal Rights From Anti-Circumvention Law. 180 | 181 | No covered work shall be deemed part of an effective technological 182 | measure under any applicable law fulfilling obligations under article 183 | 11 of the WIPO copyright treaty adopted on 20 December 1996, or 184 | similar laws prohibiting or restricting circumvention of such 185 | measures. 186 | 187 | When you convey a covered work, you waive any legal power to forbid 188 | circumvention of technological measures to the extent such circumvention 189 | is effected by exercising rights under this License with respect to 190 | the covered work, and you disclaim any intention to limit operation or 191 | modification of the work as a means of enforcing, against the work's 192 | users, your or third parties' legal rights to forbid circumvention of 193 | technological measures. 194 | 195 | 4. Conveying Verbatim Copies. 196 | 197 | You may convey verbatim copies of the Program's source code as you 198 | receive it, in any medium, provided that you conspicuously and 199 | appropriately publish on each copy an appropriate copyright notice; 200 | keep intact all notices stating that this License and any 201 | non-permissive terms added in accord with section 7 apply to the code; 202 | keep intact all notices of the absence of any warranty; and give all 203 | recipients a copy of this License along with the Program. 204 | 205 | You may charge any price or no price for each copy that you convey, 206 | and you may offer support or warranty protection for a fee. 207 | 208 | 5. Conveying Modified Source Versions. 209 | 210 | You may convey a work based on the Program, or the modifications to 211 | produce it from the Program, in the form of source code under the 212 | terms of section 4, provided that you also meet all of these conditions: 213 | 214 | a) The work must carry prominent notices stating that you modified 215 | it, and giving a relevant date. 216 | 217 | b) The work must carry prominent notices stating that it is 218 | released under this License and any conditions added under section 219 | 7. This requirement modifies the requirement in section 4 to 220 | "keep intact all notices". 221 | 222 | c) You must license the entire work, as a whole, under this 223 | License to anyone who comes into possession of a copy. This 224 | License will therefore apply, along with any applicable section 7 225 | additional terms, to the whole of the work, and all its parts, 226 | regardless of how they are packaged. This License gives no 227 | permission to license the work in any other way, but it does not 228 | invalidate such permission if you have separately received it. 229 | 230 | d) If the work has interactive user interfaces, each must display 231 | Appropriate Legal Notices; however, if the Program has interactive 232 | interfaces that do not display Appropriate Legal Notices, your 233 | work need not make them do so. 234 | 235 | A compilation of a covered work with other separate and independent 236 | works, which are not by their nature extensions of the covered work, 237 | and which are not combined with it such as to form a larger program, 238 | in or on a volume of a storage or distribution medium, is called an 239 | "aggregate" if the compilation and its resulting copyright are not 240 | used to limit the access or legal rights of the compilation's users 241 | beyond what the individual works permit. Inclusion of a covered work 242 | in an aggregate does not cause this License to apply to the other 243 | parts of the aggregate. 244 | 245 | 6. Conveying Non-Source Forms. 246 | 247 | You may convey a covered work in object code form under the terms 248 | of sections 4 and 5, provided that you also convey the 249 | machine-readable Corresponding Source under the terms of this License, 250 | in one of these ways: 251 | 252 | a) Convey the object code in, or embodied in, a physical product 253 | (including a physical distribution medium), accompanied by the 254 | Corresponding Source fixed on a durable physical medium 255 | customarily used for software interchange. 256 | 257 | b) Convey the object code in, or embodied in, a physical product 258 | (including a physical distribution medium), accompanied by a 259 | written offer, valid for at least three years and valid for as 260 | long as you offer spare parts or customer support for that product 261 | model, to give anyone who possesses the object code either (1) a 262 | copy of the Corresponding Source for all the software in the 263 | product that is covered by this License, on a durable physical 264 | medium customarily used for software interchange, for a price no 265 | more than your reasonable cost of physically performing this 266 | conveying of source, or (2) access to copy the 267 | Corresponding Source from a network server at no charge. 268 | 269 | c) Convey individual copies of the object code with a copy of the 270 | written offer to provide the Corresponding Source. This 271 | alternative is allowed only occasionally and noncommercially, and 272 | only if you received the object code with such an offer, in accord 273 | with subsection 6b. 274 | 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 | 288 | e) Convey the object code using peer-to-peer transmission, provided 289 | you inform other peers where the object code and Corresponding 290 | Source of the work are being offered to the general public at no 291 | charge under subsection 6d. 292 | 293 | A separable portion of the object code, whose source code is excluded 294 | from the Corresponding Source as a System Library, need not be 295 | included in conveying the object code work. 296 | 297 | A "User Product" is either (1) a "consumer product", which means any 298 | tangible personal property which is normally used for personal, family, 299 | or household purposes, or (2) anything designed or sold for incorporation 300 | into a dwelling. In determining whether a product is a consumer product, 301 | doubtful cases shall be resolved in favor of coverage. For a particular 302 | product received by a particular user, "normally used" refers to a 303 | typical or common use of that class of product, regardless of the status 304 | of the particular user or of the way in which the particular user 305 | actually uses, or expects or is expected to use, the product. A product 306 | is a consumer product regardless of whether the product has substantial 307 | commercial, industrial or non-consumer uses, unless such uses represent 308 | the only significant 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 install 312 | and execute modified versions of a covered work in that User Product from 313 | a modified version of its Corresponding Source. The information must 314 | suffice to ensure that the continued functioning of the modified object 315 | code is in no case prevented or interfered with solely because 316 | 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 updates 331 | for a work that has been modified or installed by the recipient, or for 332 | the User Product in which it has been modified or installed. Access to a 333 | network may be denied when the modification itself materially and 334 | adversely affects the operation of the network or violates the rules and 335 | protocols for communication across the network. 336 | 337 | Corresponding Source conveyed, and Installation Information provided, 338 | in accord with this section must be in a format that is publicly 339 | documented (and with an implementation available to the public in 340 | source code form), and must require no special password or key for 341 | unpacking, reading or copying. 342 | 343 | 7. Additional Terms. 344 | 345 | "Additional permissions" are terms that supplement the terms of this 346 | License by making exceptions from one or more of its conditions. 347 | Additional permissions that are applicable to the entire Program shall 348 | be treated as though they were included in this License, to the extent 349 | that they are valid under applicable law. If additional permissions 350 | apply only to part of the Program, that part may be used separately 351 | under those permissions, but the entire Program remains governed by 352 | this License without regard to the additional permissions. 353 | 354 | When you convey a copy of a covered work, you may at your option 355 | remove any additional permissions from that copy, or from any part of 356 | it. (Additional permissions may be written to require their own 357 | removal in certain cases when you modify the work.) You may place 358 | additional permissions on material, added by you to a covered work, 359 | for which you have or can give appropriate copyright permission. 360 | 361 | Notwithstanding any other provision of this License, for material you 362 | add to a covered work, you may (if authorized by the copyright holders of 363 | that material) supplement the terms of this License with terms: 364 | 365 | a) Disclaiming warranty or limiting liability differently from the 366 | terms of sections 15 and 16 of this License; or 367 | 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 | 372 | c) Prohibiting misrepresentation of the origin of that material, or 373 | requiring that modified versions of such material be marked in 374 | reasonable ways as different from the original version; or 375 | 376 | d) Limiting the use for publicity purposes of names of licensors or 377 | authors of the material; or 378 | 379 | e) Declining to grant rights under trademark law for use of some 380 | trade names, trademarks, or service marks; or 381 | 382 | f) Requiring indemnification of licensors and authors of that 383 | material by anyone who conveys the material (or modified versions of 384 | it) with contractual assumptions of liability to the recipient, for 385 | any liability that these contractual assumptions directly impose on 386 | those licensors and authors. 387 | 388 | All other non-permissive additional terms are considered "further 389 | restrictions" within the meaning of section 10. If the Program as you 390 | received it, or any part of it, contains a notice stating that it is 391 | governed by this License along with a term that is a further 392 | restriction, you may remove that term. If a license document contains 393 | a further restriction but permits relicensing or conveying under this 394 | License, you may add to a covered work material governed by the terms 395 | of that license document, provided that the further restriction does 396 | not survive such relicensing or conveying. 397 | 398 | If you add terms to a covered work in accord with this section, you 399 | must place, in the relevant source files, a statement of the 400 | additional terms that apply to those files, or a notice indicating 401 | where to find the applicable terms. 402 | 403 | Additional terms, permissive or non-permissive, may be stated in the 404 | form of a separately written license, or stated as exceptions; 405 | the above requirements apply either way. 406 | 407 | 8. Termination. 408 | 409 | You may not propagate or modify a covered work except as expressly 410 | provided under this License. Any attempt otherwise to propagate or 411 | modify it is void, and will automatically terminate your rights under 412 | this License (including any patent licenses granted under the third 413 | paragraph of section 11). 414 | 415 | However, if you cease all violation of this License, then your 416 | license from a particular copyright holder is reinstated (a) 417 | provisionally, unless and until the copyright holder explicitly and 418 | finally terminates your license, and (b) permanently, if the copyright 419 | holder fails to notify you of the violation by some reasonable means 420 | prior to 60 days after the cessation. 421 | 422 | Moreover, your license from a particular copyright holder is 423 | reinstated permanently if the copyright holder notifies you of the 424 | violation by some reasonable means, this is the first time you have 425 | received notice of violation of this License (for any work) from that 426 | copyright holder, and you cure the violation prior to 30 days after 427 | your receipt of the notice. 428 | 429 | Termination of your rights under this section does not terminate the 430 | licenses of parties who have received copies or rights from you under 431 | this License. If your rights have been terminated and not permanently 432 | reinstated, you do not qualify to receive new licenses for the same 433 | material under section 10. 434 | 435 | 9. Acceptance Not Required for Having Copies. 436 | 437 | You are not required to accept this License in order to receive or 438 | run a copy of the Program. Ancillary propagation of a covered work 439 | occurring solely as a consequence of using peer-to-peer transmission 440 | to receive a copy likewise does not require acceptance. However, 441 | nothing other than this License grants you permission to propagate or 442 | modify any covered work. These actions infringe copyright if you do 443 | not accept this License. Therefore, by modifying or propagating a 444 | covered work, you indicate your acceptance of this License to do so. 445 | 446 | 10. Automatic Licensing of Downstream Recipients. 447 | 448 | Each time you convey a covered work, the recipient automatically 449 | receives a license from the original licensors, to run, modify and 450 | propagate that work, subject to this License. You are not responsible 451 | for enforcing compliance by third parties with this License. 452 | 453 | An "entity transaction" is a transaction transferring control of an 454 | organization, or substantially all assets of one, or subdividing an 455 | organization, or merging organizations. If propagation of a covered 456 | work results from an entity transaction, each party to that 457 | transaction who receives a copy of the work also receives whatever 458 | licenses to the work the party's predecessor in interest had or could 459 | give under the previous paragraph, plus a right to possession of the 460 | Corresponding Source of the work from the predecessor in interest, if 461 | the predecessor has it or can get it with reasonable efforts. 462 | 463 | You may not impose any further restrictions on the exercise of the 464 | rights granted or affirmed under this License. For example, you may 465 | not impose a license fee, royalty, or other charge for exercise of 466 | rights granted under this License, and you may not initiate litigation 467 | (including a cross-claim or counterclaim in a lawsuit) alleging that 468 | any patent claim is infringed by making, using, selling, offering for 469 | sale, or importing the Program or any portion of it. 470 | 471 | 11. Patents. 472 | 473 | A "contributor" is a copyright holder who authorizes use under this 474 | License of the Program or a work on which the Program is based. The 475 | work thus licensed is called the contributor's "contributor version". 476 | 477 | A contributor's "essential patent claims" are all patent claims 478 | owned or controlled by the contributor, whether already acquired or 479 | hereafter acquired, that would be infringed by some manner, permitted 480 | by this License, of making, using, or selling its contributor version, 481 | but do not include claims that would be infringed only as a 482 | consequence of further modification of the contributor version. For 483 | purposes of this definition, "control" includes the right to grant 484 | patent sublicenses in a manner consistent with the requirements of 485 | this License. 486 | 487 | Each contributor grants you a non-exclusive, worldwide, royalty-free 488 | patent license under the contributor's essential patent claims, to 489 | make, use, sell, offer for sale, import and otherwise run, modify and 490 | propagate the contents of its contributor version. 491 | 492 | In the following three paragraphs, a "patent license" is any express 493 | agreement or commitment, however denominated, not to enforce a patent 494 | (such as an express permission to practice a patent or covenant not to 495 | sue for patent infringement). To "grant" such a patent license to a 496 | party means to make such an agreement or commitment not to enforce a 497 | patent against the party. 498 | 499 | If you convey a covered work, knowingly relying on a patent license, 500 | and the Corresponding Source of the work is not available for anyone 501 | to copy, free of charge and under the terms of this License, through a 502 | publicly available network server or other readily accessible means, 503 | then you must either (1) cause the Corresponding Source to be so 504 | available, or (2) arrange to deprive yourself of the benefit of the 505 | patent license for this particular work, or (3) arrange, in a manner 506 | consistent with the requirements of this License, to extend the patent 507 | license to downstream recipients. "Knowingly relying" means you have 508 | actual knowledge that, but for the patent license, your conveying the 509 | covered work in a country, or your recipient's use of the covered work 510 | in a country, would infringe one or more identifiable patents in that 511 | country that you have reason to believe are valid. 512 | 513 | If, pursuant to or in connection with a single transaction or 514 | arrangement, you convey, or propagate by procuring conveyance of, a 515 | covered work, and grant a patent license to some of the parties 516 | receiving the covered work authorizing them to use, propagate, modify 517 | or convey a specific copy of the covered work, then the patent license 518 | you grant is automatically extended to all recipients of the covered 519 | work and works based on it. 520 | 521 | A patent license is "discriminatory" if it does not include within 522 | the scope of its coverage, prohibits the exercise of, or is 523 | conditioned on the non-exercise of one or more of the rights that are 524 | specifically granted under this License. You may not convey a covered 525 | work if you are a party to an arrangement with a third party that is 526 | in the business of distributing software, under which you make payment 527 | to the third party based on the extent of your activity of conveying 528 | the work, and under which the third party grants, to any of the 529 | parties who would receive the covered work from you, a discriminatory 530 | patent license (a) in connection with copies of the covered work 531 | conveyed by you (or copies made from those copies), or (b) primarily 532 | for and in connection with specific products or compilations that 533 | contain the covered work, unless you entered into that arrangement, 534 | or that patent license was granted, prior to 28 March 2007. 535 | 536 | Nothing in this License shall be construed as excluding or limiting 537 | any implied license or other defenses to infringement that may 538 | otherwise be available to you under applicable patent law. 539 | 540 | 12. No Surrender of Others' Freedom. 541 | 542 | If conditions are imposed on you (whether by court order, agreement or 543 | otherwise) that contradict the conditions of this License, they do not 544 | excuse you from the conditions of this License. If you cannot convey a 545 | covered work so as to satisfy simultaneously your obligations under this 546 | License and any other pertinent obligations, then as a consequence you may 547 | not convey it at all. For example, if you agree to terms that obligate you 548 | to collect a royalty for further conveying from those to whom you convey 549 | the Program, the only way you could satisfy both those terms and this 550 | License would be to refrain entirely from conveying the Program. 551 | 552 | 13. Use with the GNU Affero General Public License. 553 | 554 | Notwithstanding any other provision of this License, you have 555 | permission to link or combine any covered work with a work licensed 556 | under version 3 of the GNU Affero General Public License into a single 557 | combined work, and to convey the resulting work. The terms of this 558 | License will continue to apply to the part which is the covered work, 559 | but the special requirements of the GNU Affero General Public License, 560 | section 13, concerning interaction through a network will apply to the 561 | combination as such. 562 | 563 | 14. Revised Versions of this License. 564 | 565 | The Free Software Foundation may publish revised and/or new versions of 566 | the GNU General Public License from time to time. Such new versions will 567 | be similar in spirit to the present version, but may differ in detail to 568 | address new problems or concerns. 569 | 570 | Each version is given a distinguishing version number. If the 571 | Program specifies that a certain numbered version of the GNU General 572 | Public License "or any later version" applies to it, you have the 573 | option of following the terms and conditions either of that numbered 574 | version or of any later version published by the Free Software 575 | Foundation. If the Program does not specify a version number of the 576 | GNU General Public License, you may choose any version ever published 577 | by the Free Software Foundation. 578 | 579 | If the Program specifies that a proxy can decide which future 580 | versions of the GNU General Public License can be used, that proxy's 581 | public statement of acceptance of a version permanently authorizes you 582 | to choose that version for the Program. 583 | 584 | Later license versions may give you additional or different 585 | permissions. However, no additional obligations are imposed on any 586 | author or copyright holder as a result of your choosing to follow a 587 | later version. 588 | 589 | 15. Disclaimer of Warranty. 590 | 591 | THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY 592 | APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT 593 | HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY 594 | OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, 595 | THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR 596 | PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM 597 | IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF 598 | ALL NECESSARY SERVICING, REPAIR OR CORRECTION. 599 | 600 | 16. Limitation of Liability. 601 | 602 | IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING 603 | WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS 604 | THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY 605 | GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE 606 | USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF 607 | DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD 608 | PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), 609 | EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF 610 | SUCH DAMAGES. 611 | 612 | 17. Interpretation of Sections 15 and 16. 613 | 614 | If the disclaimer of warranty and limitation of liability provided 615 | above cannot be given local legal effect according to their terms, 616 | reviewing courts shall apply local law that most closely approximates 617 | an absolute waiver of all civil liability in connection with the 618 | Program, unless a warranty or assumption of liability accompanies a 619 | copy of the Program in return for a fee. 620 | 621 | END OF TERMS AND CONDITIONS 622 | 623 | How to Apply These Terms to Your New Programs 624 | 625 | If you develop a new program, and you want it to be of the greatest 626 | possible use to the public, the best way to achieve this is to make it 627 | free software which everyone can redistribute and change under these terms. 628 | 629 | To do so, attach the following notices to the program. It is safest 630 | to attach them to the start of each source file to most effectively 631 | state the exclusion of warranty; and each file should have at least 632 | the "copyright" line and a pointer to where the full notice is found. 633 | 634 | 635 | Copyright (C) 636 | 637 | This program is free software: you can redistribute it and/or modify 638 | it under the terms of the GNU General Public License as published by 639 | the Free Software Foundation, either version 3 of the License, or 640 | (at your option) any later version. 641 | 642 | This program is distributed in the hope that it will be useful, 643 | but WITHOUT ANY WARRANTY; without even the implied warranty of 644 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 645 | GNU General Public License for more details. 646 | 647 | You should have received a copy of the GNU General Public License 648 | along with this program. If not, see . 649 | 650 | Also add information on how to contact you by electronic and paper 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 appropriate 661 | parts of the General Public License. Of course, your program's commands 662 | might be different; for a GUI interface, you would use an "about box". 663 | 664 | You should also get your employer (if you work as a programmer) or school, 665 | if any, to sign a "copyright disclaimer" for the program, if necessary. 666 | For more information on this, and how to apply and follow the GNU GPL, see 667 | . 668 | 669 | The GNU General Public License does not permit incorporating your program 670 | into proprietary programs. If your program is a subroutine library, you 671 | may consider it more useful to permit linking proprietary applications with 672 | the library. If this is what you want to do, use the GNU Lesser General 673 | Public License instead of this License. But first, please read 674 | . 675 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 |

2 | Banner 3 |

4 | 5 | # Twitch Adblock 6 | Twitch Adblock blocks ads on Twitch by switching to an ad-free version of the stream at 480p during the ad-time and automatically switches back to the original video quality after the ad-time is over. This is 100% done locally, no proxies/VPNs or 3rd party scripts/websites are being used. This extension does not collect/share any of your personal information and the code is public. 7 | 8 | It is recommended to use this extension along with UBlock Origin. 9 | 10 | Sourcecode: https://github.com/cleanlock/VideoAdBlockForTwitch 11 | 12 | The original author of this extension is "saucettv". This extension will always stay donation- and referral-link free. 13 | 14 | # Available Browsers 15 | - [Firefox](https://addons.mozilla.org/en-US/firefox/addon/twitch-adblock/) 16 | - [Chrome](https://chrome.google.com/webstore/detail/twitch-adblock/ljhnljhabgjcihjoihakgdiicdjncpkd?hl=en&authuser=0) 17 | - [Edge](https://microsoftedge.microsoft.com/addons/detail/twitch-adblock/ebopkbdmemhbmhemdgajhagjgeiffhik) 18 | 19 | # Manual Installation Steps for Chrome 20 | **NOTE: This is NOT RECOMMENDED, you WILL NOT get auto-updates** 21 | - [Download the latest .ZIP Archive](https://github.com/cleanlock/VideoAdBlockForTwitch/archive/refs/heads/master.zip) 22 | - Extract the ZIP Archive 23 | - Open up Chrome and in your Web Browser URL, enter: `chrome://extensions` 24 | - Enable the `Developer Mode` toggle, found in the top right of this view (typically) of the extensions page in your browser. 25 | - Click `Load unpacked Extension` 26 | - Navigate into the extracted folder from the ZIP Archive and select the folder `chrome`. 27 | 28 | # Discord 29 | - https://discord.gg/PSgWqf3v8V 30 | 31 | # Changelog 32 | - v5.3.5 33 | - `removed the URL grabber, Amazon referral link and Donation-Stuff from the original coder` 34 | - v5.3.6 35 | - `updated manifest.json` 36 | - v5.3.7 37 | - `updated to Manifest v3` 38 | - v5.3.8 39 | - `updated extension menu` 40 | - `added GitHub & Discord link to the extension menu` 41 | - v5.3.9 42 | - `fixed "Show/Hide 'Blocking Ads'-message logic` 43 | - v5.4.0 (Chrome) / v5.4.1 (Firefox) 44 | - `applied fix for the 360p quality issue` (thanks [@pixeltris](https://github.com/pixeltris)) 45 | - v5.5.0 46 | - `Added proxies/embeds in order to fight the purple screen "Commercial break"` (thanks to [@pixeltris](https://github.com/pixeltris)) 47 | - v5.5.0 48 | - `Updated Logos etc.`) 49 | - v5.7.0 50 | - `Added Adblock-Timer` (thanks to [@GODrums](https://github.com/GODrums)) 51 | 52 | # Credits 53 | - [@saucettv](https://github.com/saucettv) (original Author) 54 | - [@mikirobles](https://github.com/mikirobles) (removed Donation/Amazon stuff) 55 | - [@pwltr](https://github.com/pwltr) (added the GPL-License & helped with updating to Manifest v3) 56 | - [@HatterTheMadd](https://github.com/hatterthemadd) (helped with updating to Manifest v3) 57 | - [@kdjmonaghan](https://github.com/kdjmonaghan) (added clearer install instructions for less advanced users) 58 | -------------------------------------------------------------------------------- /chrome/background.js: -------------------------------------------------------------------------------- 1 | // Show options and install message on first install only. 2 | function handleInstalled(details) { 3 | if (details.reason == 'install') { 4 | let createData = { 5 | focused: true, 6 | type: 'popup', 7 | url: 'popup/install.html', 8 | width: 365, 9 | height: 750, 10 | }; 11 | chrome.windows.create(createData); 12 | } 13 | } 14 | 15 | chrome.runtime.onInstalled.addListener(handleInstalled); 16 | -------------------------------------------------------------------------------- /chrome/block_rules.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "id" : 1, 4 | "priority": 1, 5 | "action" : { "type" : "block" }, 6 | "condition" : { 7 | "urlFilter" : "amazon-adsystem", 8 | "domains" : ["twitch.tv","player.twitch.tv"], 9 | "resourceTypes" : ["script","main_frame","sub_frame","image","object","xmlhttprequest","ping","csp_report","media","websocket","other"] 10 | } 11 | }, 12 | { 13 | "id" : 2, 14 | "priority": 1, 15 | "action" : { "type" : "block" }, 16 | "condition" : { 17 | "urlFilter" : "cdn.krxd.net", 18 | "domains" : ["twitch.tv","player.twitch.tv"], 19 | "resourceTypes" : ["script","main_frame","sub_frame","image","object","xmlhttprequest","ping","csp_report","media","websocket","other"] 20 | } 21 | }, 22 | { 23 | "id" : 3, 24 | "priority": 1, 25 | "action" : { "type" : "block" }, 26 | "condition" : { 27 | "urlFilter" : "script.ioam.de", 28 | "domains" : ["twitch.tv","player.twitch.tv"], 29 | "resourceTypes" : ["script","main_frame","sub_frame","image","object","xmlhttprequest","ping","csp_report","media","websocket","other"] 30 | } 31 | }, 32 | { 33 | "id" : 4, 34 | "priority": 1, 35 | "action" : { "type" : "block" }, 36 | "condition" : { 37 | "urlFilter" : "edge.quantserve.com", 38 | "domains" : ["twitch.tv","player.twitch.tv"], 39 | "resourceTypes" : ["script","main_frame","sub_frame","image","object","xmlhttprequest","ping","csp_report","media","websocket","other"] 40 | } 41 | }, 42 | { 43 | "id" : 5, 44 | "priority": 1, 45 | "action" : { "type" : "block" }, 46 | "condition" : { 47 | "urlFilter" : "ddacn6pr5v0tl.cloudfront.net", 48 | "domains" : ["twitch.tv","player.twitch.tv"], 49 | "resourceTypes" : ["script","main_frame","sub_frame","image","object","xmlhttprequest","ping","csp_report","media","websocket","other"] 50 | } 51 | }, 52 | { 53 | "id" : 6, 54 | "priority": 1, 55 | "action" : { "type" : "block" }, 56 | "condition" : { 57 | "urlFilter" : "d2v02itv0y9u9t.cloudfront.net", 58 | "domains" : ["twitch.tv","player.twitch.tv"], 59 | "resourceTypes" : ["script","main_frame","sub_frame","image","object","xmlhttprequest","ping","csp_report","media","websocket","other"] 60 | } 61 | }, 62 | { 63 | "id" : 7, 64 | "priority": 1, 65 | "action" : { "type" : "block" }, 66 | "condition" : { 67 | "urlFilter" : "imrworldwide.com", 68 | "domains" : ["twitch.tv","player.twitch.tv"], 69 | "resourceTypes" : ["script","main_frame","sub_frame","image","object","xmlhttprequest","ping","csp_report","media","websocket","other"] 70 | } 71 | }, 72 | { 73 | "id" : 8, 74 | "priority": 1, 75 | "action" : { "type" : "block" }, 76 | "condition" : { 77 | "urlFilter" : "countess.twitch.tv", 78 | "domains" : ["twitch.tv","player.twitch.tv"], 79 | "resourceTypes" : ["script","main_frame","sub_frame","image","object","xmlhttprequest","ping","csp_report","media","websocket","other"] 80 | } 81 | }, 82 | { 83 | "id" : 9, 84 | "priority": 1, 85 | "action" : { "type" : "block" }, 86 | "condition" : { 87 | "urlFilter" : "scorecardresearch", 88 | "domains" : ["twitch.tv","player.twitch.tv"], 89 | "resourceTypes" : ["script","main_frame","sub_frame","image","object","xmlhttprequest","ping","csp_report","media","websocket","other"] 90 | } 91 | }, 92 | { 93 | "id" : 10, 94 | "priority": 1, 95 | "action" : { "type" : "block" }, 96 | "condition" : { 97 | "urlFilter" : "googletagservices", 98 | "domains" : ["twitch.tv","player.twitch.tv"], 99 | "resourceTypes" : ["script","main_frame","sub_frame","image","object","xmlhttprequest","ping","csp_report","media","websocket","other"] 100 | } 101 | }, 102 | { 103 | "id" : 11, 104 | "priority": 1, 105 | "action" : { "type" : "block" }, 106 | "condition" : { 107 | "urlFilter" : "branch.io", 108 | "domains" : ["twitch.tv","player.twitch.tv"], 109 | "resourceTypes" : ["script","main_frame","sub_frame","image","object","xmlhttprequest","ping","csp_report","media","websocket","other"] 110 | } 111 | }, 112 | { 113 | "id" : 12, 114 | "priority": 1, 115 | "action" : { "type" : "block" }, 116 | "condition" : { 117 | "urlFilter" : "comscore.com", 118 | "domains" : ["twitch.tv","player.twitch.tv"], 119 | "resourceTypes" : ["script","main_frame","sub_frame","image","object","xmlhttprequest","ping","csp_report","media","websocket","other"] 120 | } 121 | } 122 | ] -------------------------------------------------------------------------------- /chrome/content.js: -------------------------------------------------------------------------------- 1 | // Browser helpers 2 | const isChromium = typeof window.chrome !== 'undefined'; 3 | const isFirefox = typeof window.browser !== 'undefined'; 4 | const browser = isFirefox ? window.browser : window.chrome; 5 | 6 | // Get extension settings 7 | function updateSettings() { 8 | browser.storage.local.get(['blockingMessageTTV','forcedQualityTTV','proxyTTV','proxyQualityTTV', 'adTimeTTV']).then(result => { 9 | var settings = { 10 | BannerVisible: true, 11 | ForcedQuality: null, 12 | ProxyType: null, 13 | ProxyQuality: null, 14 | AdTime: 0 15 | }; 16 | if (result.blockingMessageTTV === 'true' || result.blockingMessageTTV === 'false') { 17 | settings.BannerVisible = result.blockingMessageTTV === 'true'; 18 | } 19 | if (result.forcedQualityTTV) { 20 | settings.ForcedQuality = result.forcedQualityTTV; 21 | } 22 | if (result.proxyTTV) { 23 | settings.ProxyType = result.proxyTTV; 24 | } 25 | if (result.proxyQualityTTV) { 26 | settings.ProxyQuality = result.proxyQualityTTV; 27 | } 28 | if (result.adTimeTTV) { 29 | settings.AdTime = result.adTimeTTV; 30 | } 31 | postMessage({ 32 | type: 'SetTwitchAdblockSettings', 33 | settings: settings, 34 | }, '*'); 35 | }); 36 | } 37 | 38 | window.addEventListener('message', (event) => { 39 | if (event.data.type && event.data.type == 'SetTwitchAdTime') { 40 | browser.storage.local.set({adTimeTTV: event.data.adtime}); 41 | console.log("Set ad time to " + event.data.adtime); 42 | } 43 | }); 44 | 45 | function appendBlockingScript() { 46 | const script = document.createElement('script'); 47 | script.src = browser.runtime.getURL('remove_video_ads.js'); 48 | script.onload = updateSettings; 49 | (document.body || document.head || document.documentElement).appendChild(script); 50 | } 51 | 52 | if (isFirefox) { 53 | browser.storage.local.get('onOffTTV').then( 54 | (result) => { 55 | if (result?.onOffTTV) { 56 | if (result.onOffTTV === 'true') { 57 | appendBlockingScript(); 58 | } 59 | } else { 60 | appendBlockingScript(); 61 | } 62 | }, 63 | (error) => { 64 | console.error(error); 65 | appendBlockingScript(); 66 | } 67 | ); 68 | } else { 69 | browser.storage.local.get(['onOffTTV'], function (result) { 70 | if (browser.runtime.lastError) { 71 | console.error(browser.runtime.lastError); 72 | appendBlockingScript(); 73 | return; 74 | } 75 | if (result?.onOffTTV) { 76 | if (result.onOffTTV === 'true') { 77 | appendBlockingScript(); 78 | } 79 | } else { 80 | appendBlockingScript(); 81 | } 82 | }); 83 | } 84 | -------------------------------------------------------------------------------- /chrome/icons/twitch-adblock-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muleyo/VideoAdBlockForTwitch/145921a822e830da62d39e36e8aafb8ef22c7be6/chrome/icons/twitch-adblock-32x32.png -------------------------------------------------------------------------------- /chrome/icons/twitch-adblock-48x48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muleyo/VideoAdBlockForTwitch/145921a822e830da62d39e36e8aafb8ef22c7be6/chrome/icons/twitch-adblock-48x48.png -------------------------------------------------------------------------------- /chrome/icons/twitch-adblock-96x96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muleyo/VideoAdBlockForTwitch/145921a822e830da62d39e36e8aafb8ef22c7be6/chrome/icons/twitch-adblock-96x96.png -------------------------------------------------------------------------------- /chrome/manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "description": "Blocks Ads on Twitch.tv.", 3 | "manifest_version": 3, 4 | "name": "Twitch Adblock", 5 | "version": "5.7.0", 6 | "icons": { 7 | "48": "icons/twitch-adblock-48x48.png", 8 | "96": "icons/twitch-adblock-96x96.png" 9 | }, 10 | "action": { 11 | "default_icon": "icons/twitch-adblock-32x32.png", 12 | "default_title": "Twitch Adblock", 13 | "default_popup": "popup/index.html" 14 | }, 15 | "options_ui": { 16 | "page": "popup/index.html" 17 | }, 18 | "permissions": ["declarativeNetRequest", "storage"], 19 | "declarative_net_request": { 20 | "rule_resources": [{ 21 | "id": "ruleset_1", 22 | "enabled": true, 23 | "path": "block_rules.json" 24 | }] 25 | }, 26 | "background": { 27 | "service_worker": "background.js" 28 | }, 29 | "content_scripts": [{ 30 | "matches": ["https://*.twitch.tv/*"], 31 | "run_at": "document_start", 32 | "js": ["content.js"] 33 | }], 34 | "web_accessible_resources": [{ 35 | "resources": ["remove_video_ads.js"], 36 | "matches": ["https://*.twitch.tv/*"] 37 | }] 38 | } 39 | -------------------------------------------------------------------------------- /chrome/popup/discord.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muleyo/VideoAdBlockForTwitch/145921a822e830da62d39e36e8aafb8ef22c7be6/chrome/popup/discord.png -------------------------------------------------------------------------------- /chrome/popup/github.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muleyo/VideoAdBlockForTwitch/145921a822e830da62d39e36e8aafb8ef22c7be6/chrome/popup/github.png -------------------------------------------------------------------------------- /chrome/popup/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Twitch Adblock 6 | 101 | 102 | 103 | 158 | 159 | 160 | 161 | -------------------------------------------------------------------------------- /chrome/popup/install.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Twitch Adblock 6 | 100 | 101 | 102 | 158 | 159 | 160 | 161 | -------------------------------------------------------------------------------- /chrome/popup/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muleyo/VideoAdBlockForTwitch/145921a822e830da62d39e36e8aafb8ef22c7be6/chrome/popup/logo.png -------------------------------------------------------------------------------- /chrome/popup/popupjs.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | const isChromium = typeof window.chrome !== 'undefined'; 4 | const isFirefox = typeof window.browser !== 'undefined'; 5 | const browser = isFirefox ? window.browser : window.chrome; 6 | 7 | var onOff = document.querySelector('input[name=checkbox_ad]'); 8 | var blockingMessage = document.querySelector('input[name=checkbox_ad_msg]'); 9 | var forcedQuality = document.querySelector('select[name=dropdown_forced_quality]'); 10 | var proxy = document.querySelector('select[name=dropdown_proxy]'); 11 | var proxyQuality = document.querySelector('select[name=dropdown_proxy_quality]'); 12 | var adTime = document.querySelector('#ad_time'); 13 | 14 | var allSettingsElements = [onOff,blockingMessage,forcedQuality,proxy,proxyQuality]; 15 | 16 | for (var i = 0; i < allSettingsElements.length; i++) { 17 | if (allSettingsElements[i]) { 18 | allSettingsElements[i].addEventListener('change', function() { 19 | saveOptions(); 20 | }); 21 | } 22 | } 23 | 24 | function saveOptions() { 25 | chrome.storage.local.set({onOffTTV: onOff.checked ? 'true' : 'false'}); 26 | chrome.storage.local.set({blockingMessageTTV: blockingMessage.checked ? 'true' : 'false'}); 27 | //chrome.storage.local.set({forcedQualityTTV: forcedQuality.options[forcedQuality.selectedIndex].text}); 28 | chrome.storage.local.set({proxyTTV: proxy.options[proxy.selectedIndex].text}); 29 | chrome.storage.local.set({proxyQualityTTV: proxyQuality.options[proxyQuality.selectedIndex].text}); 30 | } 31 | 32 | function restoreOptions() { 33 | restoreToggle('onOffTTV', onOff); 34 | restoreToggle('blockingMessageTTV', blockingMessage); 35 | //restoreDropdown('forcedQualityTTV', forcedQuality); 36 | restoreDropdown('proxyTTV', proxy); 37 | restoreDropdown('proxyQualityTTV', proxyQuality); 38 | restoreAdtime('adTimeTTV', adTime); 39 | } 40 | 41 | function restoreToggle(name, toggle) { 42 | chrome.storage.local.get([name], function(result) { 43 | if (result[name]) { 44 | toggle.checked = result[name] == 'true'; 45 | } 46 | }); 47 | } 48 | 49 | function restoreDropdown(name, dropdown) { 50 | chrome.storage.local.get([name], function(result) { 51 | if (result[name]) { 52 | var items = Array.from(dropdown.options).filter(item => item.text == result[name]); 53 | if (items.length == 1) { 54 | dropdown.selectedIndex = items[0].index; 55 | } 56 | } 57 | }); 58 | } 59 | 60 | function restoreAdtime(name, container) { 61 | chrome.storage.local.get([name], function(result) { 62 | if (result[name]) { 63 | // only display hours / minutes if needed 64 | const hours = Math.trunc(result[name] / 3600); 65 | const minutes = Math.trunc((result[name] - hours * 3600) / 60); 66 | container.innerText = `${hours>0 ? hours+"h " : ""}${minutes>0 ? minutes+"min " : ""}${result[name] % 60}s`; 67 | } 68 | }); 69 | } 70 | 71 | document.addEventListener('DOMContentLoaded', restoreOptions); -------------------------------------------------------------------------------- /chrome/remove_video_ads.js: -------------------------------------------------------------------------------- 1 | //This stops Twitch from pausing the player when in another tab and an ad shows. 2 | try { 3 | Object.defineProperty(document, 'visibilityState', { 4 | get() { 5 | return 'visible'; 6 | } 7 | }); 8 | Object.defineProperty(document, 'hidden', { 9 | get() { 10 | return false; 11 | } 12 | }); 13 | const block = e => { 14 | e.preventDefault(); 15 | e.stopPropagation(); 16 | e.stopImmediatePropagation(); 17 | }; 18 | const process = e => { 19 | e.preventDefault(); 20 | e.stopPropagation(); 21 | e.stopImmediatePropagation(); 22 | //This corrects the background tab buffer bug when switching to the background tab for the first time after an extended period. 23 | doTwitchPlayerTask(false, false, true, false, false); 24 | }; 25 | document.addEventListener('visibilitychange', process, true); 26 | document.addEventListener('webkitvisibilitychange', block, true); 27 | document.addEventListener('mozvisibilitychange', block, true); 28 | document.addEventListener('hasFocus', block, true); 29 | if (/Firefox/.test(navigator.userAgent)) { 30 | Object.defineProperty(document, 'mozHidden', { 31 | get() { 32 | return false; 33 | } 34 | }); 35 | } else { 36 | Object.defineProperty(document, 'webkitHidden', { 37 | get() { 38 | return false; 39 | } 40 | }); 41 | } 42 | } catch (err) {} 43 | 44 | //Send settings updates to worker. 45 | window.addEventListener('message', (event) => { 46 | if (event.source != window) { 47 | return; 48 | } 49 | if (event.data.type && event.data.type == 'SetTwitchAdblockSettings' && event.data.settings) { 50 | TwitchAdblockSettings = event.data.settings; 51 | } 52 | }, false); 53 | 54 | function declareOptions(scope) { 55 | scope.AdSignifier = 'stitched'; 56 | scope.ClientID = 'kimne78kx3ncx6brgo4mv6wki5h1ko'; 57 | scope.ClientVersion = 'null'; 58 | scope.ClientSession = 'null'; 59 | //scope.PlayerType1 = 'site'; //Source - NOTE: This is unused as it's implicitly used by the website iself 60 | scope.PlayerType2 = 'embed'; //Source 61 | scope.PlayerType3 = 'proxy'; //Source 62 | scope.PlayerType4 = 'thunderdome'; //480p 63 | scope.CurrentChannelName = null; 64 | scope.UsherParams = null; 65 | scope.WasShowingAd = false; 66 | scope.GQLDeviceID = null; 67 | scope.IsSquadStream = false; 68 | scope.StreamInfos = []; 69 | scope.StreamInfosByUrl = []; 70 | scope.MainUrlByUrl = []; 71 | scope.EncodingCacheTimeout = 60000; 72 | scope.DefaultProxyType = null; 73 | scope.DefaultForcedQuality = null; 74 | scope.DefaultProxyQuality = null; 75 | } 76 | 77 | declareOptions(window); 78 | 79 | var TwitchAdblockSettings = { 80 | BannerVisible: true, 81 | ForcedQuality: null, 82 | ProxyType: null, 83 | ProxyQuality: null, 84 | AdTime: 0 85 | }; 86 | 87 | var twitchMainWorker = null; 88 | var adBlockDiv = null; 89 | var OriginalVideoPlayerQuality = null; 90 | var IsPlayerAutoQuality = null; 91 | const oldWorker = window.Worker; 92 | 93 | window.Worker = class Worker extends oldWorker { 94 | constructor(twitchBlobUrl) { 95 | if (twitchMainWorker) { 96 | super(twitchBlobUrl); 97 | return; 98 | } 99 | var jsURL = getWasmWorkerUrl(twitchBlobUrl); 100 | if (typeof jsURL !== 'string') { 101 | super(twitchBlobUrl); 102 | return; 103 | } 104 | var newBlobStr = ` 105 | ${getStreamUrlForResolution.toString()} 106 | ${getStreamForResolution.toString()} 107 | ${stripUnusedParams.toString()} 108 | ${processM3U8.toString()} 109 | ${hookWorkerFetch.toString()} 110 | ${declareOptions.toString()} 111 | ${getAccessToken.toString()} 112 | ${gqlRequest.toString()} 113 | ${adRecordgqlPacket.toString()} 114 | ${tryNotifyTwitch.toString()} 115 | ${parseAttributes.toString()} 116 | declareOptions(self); 117 | self.TwitchAdblockSettings = ${JSON.stringify(TwitchAdblockSettings)}; 118 | self.addEventListener('message', function(e) { 119 | if (e.data.key == 'UpdateIsSquadStream') { 120 | IsSquadStream = e.data.value; 121 | } else if (e.data.key == 'UpdateClientVersion') { 122 | ClientVersion = e.data.value; 123 | } else if (e.data.key == 'UpdateClientSession') { 124 | ClientSession = e.data.value; 125 | } else if (e.data.key == 'UpdateClientId') { 126 | ClientID = e.data.value; 127 | } else if (e.data.key == 'UpdateDeviceId') { 128 | GQLDeviceID = e.data.value; 129 | } 130 | }); 131 | hookWorkerFetch(); 132 | importScripts('${jsURL}'); 133 | `; 134 | super(URL.createObjectURL(new Blob([newBlobStr]))); 135 | twitchMainWorker = this; 136 | this.onmessage = function(e) { 137 | if (e.data.key == 'ShowAdBlockBanner') { 138 | if (!TwitchAdblockSettings.BannerVisible) { 139 | return; 140 | } 141 | if (adBlockDiv == null) { 142 | adBlockDiv = getAdBlockDiv(); 143 | } 144 | adBlockDiv.P.textContent = 'Blocking ads...'; 145 | adBlockDiv.style.display = 'block'; 146 | 147 | //setting data-start-time as starting time of ad blocking 148 | let startTime = adBlockDiv.getAttribute('data-start-time'); 149 | if (!startTime || startTime == 'null') { 150 | adBlockDiv.setAttribute('data-start-time', new Date().toISOString()); 151 | } 152 | } else if (e.data.key == 'HideAdBlockBanner') { 153 | if (adBlockDiv == null) { 154 | adBlockDiv = getAdBlockDiv(); 155 | } 156 | adBlockDiv.style.display = 'none'; 157 | 158 | // calculate duration of last ads 159 | let startTime = adBlockDiv.getAttribute('data-start-time'); 160 | if (startTime) { 161 | startTime = new Date(startTime); 162 | let duration = Math.round((new Date() - startTime) / 1000); 163 | 164 | if (isNaN(duration) || duration < 1) { 165 | console.log(`Duration (${duration}) is invalid, not saving time.`); 166 | return; 167 | } 168 | TwitchAdblockSettings.AdTime += duration; 169 | // post message to content.js to save adtime in local storage 170 | postMessage({ 171 | type: 'SetTwitchAdTime', 172 | adtime: TwitchAdblockSettings.AdTime 173 | }, '*'); 174 | 175 | adBlockDiv.setAttribute('data-start-time', null); 176 | } 177 | 178 | } else if (e.data.key == 'PauseResumePlayer') { 179 | doTwitchPlayerTask(true, false, false, false, false); 180 | } else if (e.data.key == 'ForceChangeQuality') { 181 | //This is used to fix the bug where the video would freeze. 182 | try { 183 | if (navigator.userAgent.toLowerCase().indexOf('firefox') == -1) { 184 | return; 185 | } 186 | var autoQuality = doTwitchPlayerTask(false, false, false, true, false); 187 | var currentQuality = doTwitchPlayerTask(false, true, false, false, false); 188 | 189 | if (IsPlayerAutoQuality == null) { 190 | IsPlayerAutoQuality = autoQuality; 191 | } 192 | if (OriginalVideoPlayerQuality == null) { 193 | OriginalVideoPlayerQuality = currentQuality; 194 | } 195 | if (!currentQuality.includes('480') || e.data.value != null) { 196 | if (!OriginalVideoPlayerQuality.includes('480')) { 197 | var settingsMenu = document.querySelector('div[data-a-target="player-settings-menu"]'); 198 | if (settingsMenu == null) { 199 | var settingsCog = document.querySelector('button[data-a-target="player-settings-button"]'); 200 | if (settingsCog) { 201 | settingsCog.click(); 202 | var qualityMenu = document.querySelector('button[data-a-target="player-settings-menu-item-quality"]'); 203 | if (qualityMenu) { 204 | qualityMenu.click(); 205 | } 206 | var lowQuality = document.querySelectorAll('input[data-a-target="tw-radio"'); 207 | if (lowQuality) { 208 | var qualityToSelect = lowQuality.length - 3; 209 | if (e.data.value != null) { 210 | if (e.data.value.includes('original')) { 211 | e.data.value = OriginalVideoPlayerQuality; 212 | if (IsPlayerAutoQuality) { 213 | e.data.value = 'auto'; 214 | } 215 | } 216 | if (e.data.value.includes('160p')) { 217 | qualityToSelect = 5; 218 | } 219 | if (e.data.value.includes('360p')) { 220 | qualityToSelect = 4; 221 | } 222 | if (e.data.value.includes('480p')) { 223 | qualityToSelect = 3; 224 | } 225 | if (e.data.value.includes('720p')) { 226 | qualityToSelect = 2; 227 | } 228 | if (e.data.value.includes('822p')) { 229 | qualityToSelect = 2; 230 | } 231 | if (e.data.value.includes('864p')) { 232 | qualityToSelect = 2; 233 | } 234 | if (e.data.value.includes('900p')) { 235 | qualityToSelect = 2; 236 | } 237 | if (e.data.value.includes('936p')) { 238 | qualityToSelect = 2; 239 | } 240 | if (e.data.value.includes('960p')) { 241 | qualityToSelect = 2; 242 | } 243 | if (e.data.value.includes('1080p')) { 244 | qualityToSelect = 2; 245 | } 246 | if (e.data.value.includes('source')) { 247 | qualityToSelect = 1; 248 | } 249 | if (e.data.value.includes('auto')) { 250 | qualityToSelect = 0; 251 | } 252 | } 253 | var currentQualityLS = window.localStorage.getItem('video-quality'); 254 | 255 | lowQuality[qualityToSelect].click(); 256 | window.localStorage.setItem('video-quality', currentQualityLS); 257 | 258 | if (e.data.value != null) { 259 | OriginalVideoPlayerQuality = null; 260 | IsPlayerAutoQuality = null; 261 | doTwitchPlayerTask(false, false, false, true, true); 262 | } 263 | } 264 | 265 | } 266 | } 267 | } 268 | } 269 | } catch (err) { 270 | OriginalVideoPlayerQuality = null; 271 | IsPlayerAutoQuality = null; 272 | } 273 | } 274 | }; 275 | 276 | function getAdBlockDiv() { 277 | //To display a notification to the user, that an ad is being blocked. 278 | var playerRootDiv = document.querySelector('.video-player'); 279 | var adBlockDiv = null; 280 | if (playerRootDiv != null) { 281 | adBlockDiv = playerRootDiv.querySelector('.adblock-overlay'); 282 | if (adBlockDiv == null) { 283 | adBlockDiv = document.createElement('div'); 284 | adBlockDiv.className = 'adblock-overlay'; 285 | adBlockDiv.innerHTML = '

'; 286 | adBlockDiv.style.display = 'none'; 287 | adBlockDiv.P = adBlockDiv.querySelector('p'); 288 | playerRootDiv.appendChild(adBlockDiv); 289 | } 290 | } 291 | return adBlockDiv; 292 | } 293 | } 294 | }; 295 | 296 | function getWasmWorkerUrl(twitchBlobUrl) { 297 | var req = new XMLHttpRequest(); 298 | req.open('GET', twitchBlobUrl, false); 299 | req.send(); 300 | return req.responseText.split("'")[1]; 301 | } 302 | 303 | function hookWorkerFetch() { 304 | console.log('Twitch adblocker is enabled'); 305 | var realFetch = fetch; 306 | fetch = async function(url, options) { 307 | if (typeof url === 'string') { 308 | if (url.includes('video-weaver')) { 309 | return new Promise(function(resolve, reject) { 310 | var processAfter = async function(response) { 311 | //Here we check the m3u8 for any ads and also try fallback player types if needed. 312 | 313 | var responseText = await response.text(); 314 | var weaverText = null; 315 | 316 | weaverText = await processM3U8(url, responseText, realFetch, PlayerType2); 317 | if (weaverText.includes(AdSignifier)) { 318 | weaverText = await processM3U8(url, responseText, realFetch, PlayerType3); 319 | } 320 | if (weaverText.includes(AdSignifier)) { 321 | weaverText = await processM3U8(url, responseText, realFetch, PlayerType4); 322 | } 323 | 324 | resolve(new Response(weaverText)); 325 | }; 326 | var send = function() { 327 | return realFetch(url, options).then(function(response) { 328 | processAfter(response); 329 | })['catch'](function(err) { 330 | reject(err); 331 | }); 332 | }; 333 | send(); 334 | }); 335 | } else if (url.includes('/api/channel/hls/')) { 336 | var channelName = (new URL(url)).pathname.match(/([^\/]+)(?=\.\w+$)/)[0]; 337 | UsherParams = (new URL(url)).search; 338 | CurrentChannelName = channelName; 339 | //To prevent pause/resume loop for mid-rolls. 340 | var isPBYPRequest = url.includes('picture-by-picture'); 341 | if (isPBYPRequest) { 342 | url = ''; 343 | } 344 | return new Promise(function(resolve, reject) { 345 | var processAfter = async function(response) { 346 | if (response.status == 200) { 347 | encodingsM3u8 = await response.text(); 348 | var streamInfo = StreamInfos[channelName]; 349 | if (streamInfo == null) { 350 | StreamInfos[channelName] = streamInfo = {}; 351 | } 352 | streamInfo.ChannelName = channelName; 353 | streamInfo.Urls = [];// xxx.m3u8 -> { Resolution: "284x160", FrameRate: 30.0 } 354 | streamInfo.EncodingsM3U8Cache = []; 355 | streamInfo.EncodingsM3U8 = encodingsM3u8; 356 | var lines = encodingsM3u8.replace('\r', '').split('\n'); 357 | for (var i = 0; i < lines.length; i++) { 358 | if (!lines[i].startsWith('#') && lines[i].includes('.m3u8')) { 359 | streamInfo.Urls[lines[i]] = -1; 360 | if (i > 0 && lines[i - 1].startsWith('#EXT-X-STREAM-INF')) { 361 | var attributes = parseAttributes(lines[i - 1]); 362 | var resolution = attributes['RESOLUTION']; 363 | var frameRate = attributes['FRAME-RATE']; 364 | if (resolution) { 365 | streamInfo.Urls[lines[i]] = { 366 | Resolution: resolution, 367 | FrameRate: frameRate 368 | }; 369 | } 370 | } 371 | StreamInfosByUrl[lines[i]] = streamInfo; 372 | MainUrlByUrl[lines[i]] = url; 373 | } 374 | } 375 | resolve(new Response(encodingsM3u8)); 376 | } else { 377 | resolve(response); 378 | } 379 | }; 380 | var send = function() { 381 | return realFetch(url, options).then(function(response) { 382 | processAfter(response); 383 | })['catch'](function(err) { 384 | reject(err); 385 | }); 386 | }; 387 | send(); 388 | }); 389 | } 390 | } 391 | return realFetch.apply(this, arguments); 392 | }; 393 | } 394 | 395 | function getStreamUrlForResolution(encodingsM3u8, resolutionInfo, qualityOverrideStr) { 396 | var qualityOverride = 0; 397 | if (qualityOverrideStr && qualityOverrideStr.endsWith('p')) { 398 | qualityOverride = qualityOverrideStr.substr(0, qualityOverrideStr.length - 1) | 0; 399 | } 400 | var qualityOverrideFoundQuality = 0; 401 | var qualityOverrideFoundFrameRate = 0; 402 | var encodingsLines = encodingsM3u8.replace('\r', '').split('\n'); 403 | var firstUrl = null; 404 | var lastUrl = null; 405 | var matchedResolutionUrl = null; 406 | var matchedFrameRate = false; 407 | for (var i = 0; i < encodingsLines.length; i++) { 408 | if (!encodingsLines[i].startsWith('#') && encodingsLines[i].includes('.m3u8')) { 409 | if (i > 0 && encodingsLines[i - 1].startsWith('#EXT-X-STREAM-INF')) { 410 | var attributes = parseAttributes(encodingsLines[i - 1]); 411 | var resolution = attributes['RESOLUTION']; 412 | var frameRate = attributes['FRAME-RATE']; 413 | if (resolution) { 414 | if (qualityOverride) { 415 | var quality = resolution.toLowerCase().split('x')[1]; 416 | if (quality == qualityOverride) { 417 | qualityOverrideFoundQuality = quality; 418 | qualityOverrideFoundFrameRate = frameRate; 419 | matchedResolutionUrl = encodingsLines[i]; 420 | if (frameRate < 40) { 421 | //console.log(`qualityOverride(A) quality:${quality} frameRate:${frameRate}`); 422 | return matchedResolutionUrl; 423 | } 424 | } else if (quality < qualityOverride) { 425 | //if (matchedResolutionUrl) { 426 | // console.log(`qualityOverride(B) quality:${qualityOverrideFoundQuality} frameRate:${qualityOverrideFoundFrameRate}`); 427 | //} else { 428 | // console.log(`qualityOverride(C) quality:${quality} frameRate:${frameRate}`); 429 | //} 430 | return matchedResolutionUrl ? matchedResolutionUrl : encodingsLines[i]; 431 | } 432 | } else if ((!resolutionInfo || resolution == resolutionInfo.Resolution) && 433 | (!matchedResolutionUrl || (!matchedFrameRate && frameRate == resolutionInfo.FrameRate))) { 434 | matchedResolutionUrl = encodingsLines[i]; 435 | matchedFrameRate = frameRate == resolutionInfo.FrameRate; 436 | if (matchedFrameRate) { 437 | return matchedResolutionUrl; 438 | } 439 | } 440 | } 441 | if (firstUrl == null) { 442 | firstUrl = encodingsLines[i]; 443 | } 444 | lastUrl = encodingsLines[i]; 445 | } 446 | } 447 | } 448 | if (qualityOverride) { 449 | return lastUrl; 450 | } 451 | return matchedResolutionUrl ? matchedResolutionUrl : firstUrl; 452 | } 453 | 454 | async function getStreamForResolution(streamInfo, resolutionInfo, encodingsM3u8, fallbackStreamStr, playerType, realFetch) { 455 | var qualityOverride = null; 456 | if (playerType === 'proxy') { 457 | qualityOverride = TwitchAdblockSettings.ProxyQuality ? TwitchAdblockSettings.ProxyQuality : DefaultProxyQuality; 458 | } 459 | if (streamInfo.EncodingsM3U8Cache[playerType].Resolution != resolutionInfo.Resolution || 460 | streamInfo.EncodingsM3U8Cache[playerType].RequestTime < Date.now() - EncodingCacheTimeout) { 461 | console.log(`Blocking ads (type:${playerType}, resolution:${resolutionInfo.Resolution}, frameRate:${resolutionInfo.FrameRate}, qualityOverride:${qualityOverride})`); 462 | } 463 | streamInfo.EncodingsM3U8Cache[playerType].RequestTime = Date.now(); 464 | streamInfo.EncodingsM3U8Cache[playerType].Value = encodingsM3u8; 465 | streamInfo.EncodingsM3U8Cache[playerType].Resolution = resolutionInfo.Resolution; 466 | var streamM3u8Url = getStreamUrlForResolution(encodingsM3u8, resolutionInfo, qualityOverride); 467 | var streamM3u8Response = await realFetch(streamM3u8Url); 468 | if (streamM3u8Response.status == 200) { 469 | var m3u8Text = await streamM3u8Response.text(); 470 | WasShowingAd = true; 471 | postMessage({ 472 | key: 'ShowAdBlockBanner' 473 | }); 474 | postMessage({ 475 | key: 'ForceChangeQuality' 476 | }); 477 | 478 | if (!m3u8Text || m3u8Text.includes(AdSignifier)) { 479 | streamInfo.EncodingsM3U8Cache[playerType].Value = null; 480 | } 481 | 482 | return m3u8Text; 483 | } else { 484 | streamInfo.EncodingsM3U8Cache[playerType].Value = null; 485 | return fallbackStreamStr; 486 | } 487 | } 488 | 489 | function stripUnusedParams(str, params) { 490 | if (!params) { 491 | params = [ 'token', 'sig' ]; 492 | } 493 | var tempUrl = new URL('https://localhost/' + str); 494 | for (var i = 0; i < params.length; i++) { 495 | tempUrl.searchParams.delete(params[i]); 496 | } 497 | return tempUrl.pathname.substring(1) + tempUrl.search; 498 | } 499 | 500 | async function processM3U8(url, textStr, realFetch, playerType) { 501 | //Checks the m3u8 for ads and if it finds one, instead returns an ad-free stream. 502 | 503 | var streamInfo = StreamInfosByUrl[url]; 504 | 505 | //Ad blocking for squad streams is disabled due to the way multiple weaver urls are used. No workaround so far. 506 | if (IsSquadStream == true) { 507 | return textStr; 508 | } 509 | 510 | if (!textStr) { 511 | return textStr; 512 | } 513 | 514 | //Some live streams use mp4. 515 | if (!textStr.includes('.ts') && !textStr.includes('.mp4')) { 516 | return textStr; 517 | } 518 | 519 | var haveAdTags = textStr.includes(AdSignifier); 520 | 521 | if (haveAdTags) { 522 | 523 | var isMidroll = textStr.includes('"MIDROLL"') || textStr.includes('"midroll"'); 524 | 525 | //Reduces ad frequency. TODO: Reduce the number of requests. This is really spamming Twitch with requests. 526 | if (!isMidroll) { 527 | try { 528 | //tryNotifyTwitch(textStr); 529 | } catch (err) {} 530 | } 531 | 532 | var currentResolution = null; 533 | if (streamInfo && streamInfo.Urls) { 534 | for (const [resUrl, resInfo] of Object.entries(streamInfo.Urls)) { 535 | if (resUrl == url) { 536 | currentResolution = resInfo; 537 | //console.log(resInfo.Resolution); 538 | break; 539 | } 540 | } 541 | } 542 | 543 | // Keep the m3u8 around for a little while (once per ad) before requesting a new one 544 | var encodingsM3U8Cache = streamInfo.EncodingsM3U8Cache[playerType]; 545 | if (encodingsM3U8Cache) { 546 | if (encodingsM3U8Cache.Value && encodingsM3U8Cache.RequestTime >= Date.now() - EncodingCacheTimeout) { 547 | try { 548 | var result = getStreamForResolution(streamInfo, currentResolution, encodingsM3U8Cache.Value, null, playerType, realFetch); 549 | if (result) { 550 | return result; 551 | } 552 | } catch (err) { 553 | encodingsM3U8Cache.Value = null; 554 | } 555 | } 556 | } else { 557 | streamInfo.EncodingsM3U8Cache[playerType] = { 558 | RequestTime: Date.now(), 559 | Value: null, 560 | Resolution: null 561 | }; 562 | } 563 | 564 | if (playerType === 'proxy') { 565 | try { 566 | var proxyType = TwitchAdblockSettings.ProxyType ? TwitchAdblockSettings.ProxyType : DefaultProxyType; 567 | var encodingsM3u8Response = null; 568 | /*var tempUrl = stripUnusedParams(MainUrlByUrl[url]); 569 | const match = /(hls|vod)\/(.+?)$/gim.exec(tempUrl);*/ 570 | switch (proxyType) { 571 | case 'TTV LOL': 572 | encodingsM3u8Response = await realFetch('https://api.ttv.lol/playlist/' + CurrentChannelName + '.m3u8%3Fallow_source%3Dtrue'/* + encodeURIComponent(match[2])*/, {headers: {'X-Donate-To': 'https://ttv.lol/donate'}}); 573 | break; 574 | /*case 'Purple Adblock':// Broken... 575 | encodingsM3u8Response = await realFetch('https://eu1.jupter.ga/channel/' + CurrentChannelName);*/ 576 | case 'Falan':// https://greasyfork.org/en/scripts/425139-twitch-ad-fix/code 577 | encodingsM3u8Response = await realFetch(atob('aHR0cHM6Ly9qaWdnbGUuYmV5cGF6YXJpZ3VydXN1LndvcmtlcnMuZGV2') + '/hls/' + CurrentChannelName + '.m3u8%3Fallow_source%3Dtrue'/* + encodeURIComponent(match[2])*/); 578 | break; 579 | } 580 | if (encodingsM3u8Response && encodingsM3u8Response.status === 200) { 581 | return getStreamForResolution(streamInfo, currentResolution, await encodingsM3u8Response.text(), textStr, playerType, realFetch); 582 | } 583 | } catch (err) {} 584 | return textStr; 585 | } 586 | 587 | var accessTokenResponse = await getAccessToken(CurrentChannelName, playerType); 588 | if (accessTokenResponse.status === 200) { 589 | var accessToken = await accessTokenResponse.json(); 590 | try { 591 | var urlInfo = new URL('https://usher.ttvnw.net/api/channel/hls/' + CurrentChannelName + '.m3u8' + UsherParams); 592 | urlInfo.searchParams.set('sig', accessToken.data.streamPlaybackAccessToken.signature); 593 | urlInfo.searchParams.set('token', accessToken.data.streamPlaybackAccessToken.value); 594 | var encodingsM3u8Response = await realFetch(urlInfo.href); 595 | if (encodingsM3u8Response.status === 200) { 596 | return getStreamForResolution(streamInfo, currentResolution, await encodingsM3u8Response.text(), textStr, playerType, realFetch); 597 | } else { 598 | return textStr; 599 | } 600 | } catch (err) {} 601 | return textStr; 602 | } else { 603 | return textStr; 604 | } 605 | } else { 606 | if (WasShowingAd) { 607 | console.log('Finished blocking ads'); 608 | WasShowingAd = false; 609 | //Here we put player back to original quality and remove the blocking message. 610 | postMessage({ 611 | key: 'ForceChangeQuality', 612 | value: 'original' 613 | }); 614 | postMessage({ 615 | key: 'PauseResumePlayer' 616 | }); 617 | postMessage({ 618 | key: 'HideAdBlockBanner' 619 | }); 620 | } 621 | return textStr; 622 | } 623 | return textStr; 624 | } 625 | 626 | function parseAttributes(str) { 627 | return Object.fromEntries( 628 | str.split(/(?:^|,)((?:[^=]*)=(?:"[^"]*"|[^,]*))/) 629 | .filter(Boolean) 630 | .map(x => { 631 | const idx = x.indexOf('='); 632 | const key = x.substring(0, idx); 633 | const value = x.substring(idx + 1); 634 | const num = Number(value); 635 | return [key, Number.isNaN(num) ? value.startsWith('"') ? JSON.parse(value) : value : num]; 636 | })); 637 | } 638 | 639 | async function tryNotifyTwitch(streamM3u8) { 640 | //We notify that an ad was requested but was not visible and was also muted. 641 | var matches = streamM3u8.match(/#EXT-X-DATERANGE:(ID="stitched-ad-[^\n]+)\n/); 642 | if (matches.length > 1) { 643 | const attrString = matches[1]; 644 | const attr = parseAttributes(attrString); 645 | var podLength = parseInt(attr['X-TV-TWITCH-AD-POD-LENGTH'] ? attr['X-TV-TWITCH-AD-POD-LENGTH'] : '1'); 646 | var podPosition = parseInt(attr['X-TV-TWITCH-AD-POD-POSITION'] ? attr['X-TV-TWITCH-AD-POD-POSITION'] : '0'); 647 | var radToken = attr['X-TV-TWITCH-AD-RADS-TOKEN']; 648 | var lineItemId = attr['X-TV-TWITCH-AD-LINE-ITEM-ID']; 649 | var orderId = attr['X-TV-TWITCH-AD-ORDER-ID']; 650 | var creativeId = attr['X-TV-TWITCH-AD-CREATIVE-ID']; 651 | var adId = attr['X-TV-TWITCH-AD-ADVERTISER-ID']; 652 | var rollType = attr['X-TV-TWITCH-AD-ROLL-TYPE'].toLowerCase(); 653 | const baseData = { 654 | stitched: true, 655 | roll_type: rollType, 656 | player_mute: true, 657 | player_volume: 0.0, 658 | visible: false, 659 | }; 660 | for (let podPosition = 0; podPosition < podLength; podPosition++) { 661 | const extendedData = { 662 | ...baseData, 663 | ad_id: adId, 664 | ad_position: podPosition, 665 | duration: 0, 666 | creative_id: creativeId, 667 | total_ads: podLength, 668 | order_id: orderId, 669 | line_item_id: lineItemId, 670 | }; 671 | await gqlRequest(adRecordgqlPacket('video_ad_impression', radToken, extendedData)); 672 | for (let quartile = 0; quartile < 4; quartile++) { 673 | await gqlRequest( 674 | adRecordgqlPacket('video_ad_quartile_complete', radToken, { 675 | ...extendedData, 676 | quartile: quartile + 1, 677 | }) 678 | ); 679 | } 680 | await gqlRequest(adRecordgqlPacket('video_ad_pod_complete', radToken, baseData)); 681 | } 682 | } 683 | } 684 | 685 | function adRecordgqlPacket(event, radToken, payload) { 686 | return [{ 687 | operationName: 'ClientSideAdEventHandling_RecordAdEvent', 688 | variables: { 689 | input: { 690 | eventName: event, 691 | eventPayload: JSON.stringify(payload), 692 | radToken, 693 | }, 694 | }, 695 | extensions: { 696 | persistedQuery: { 697 | version: 1, 698 | sha256Hash: '7e6c69e6eb59f8ccb97ab73686f3d8b7d85a72a0298745ccd8bfc68e4054ca5b', 699 | }, 700 | }, 701 | }]; 702 | } 703 | 704 | function getAccessToken(channelName, playerType, realFetch) { 705 | var body = null; 706 | var templateQuery = 'query PlaybackAccessToken_Template($login: String!, $isLive: Boolean!, $vodID: ID!, $isVod: Boolean!, $playerType: String!) { streamPlaybackAccessToken(channelName: $login, params: {platform: "web", playerBackend: "mediaplayer", playerType: $playerType}) @include(if: $isLive) { value signature __typename } videoPlaybackAccessToken(id: $vodID, params: {platform: "web", playerBackend: "mediaplayer", playerType: $playerType}) @include(if: $isVod) { value signature __typename }}'; 707 | body = { 708 | operationName: 'PlaybackAccessToken_Template', 709 | query: templateQuery, 710 | variables: { 711 | 'isLive': true, 712 | 'login': channelName, 713 | 'isVod': false, 714 | 'vodID': '', 715 | 'playerType': playerType 716 | } 717 | }; 718 | return gqlRequest(body, realFetch); 719 | } 720 | 721 | function gqlRequest(body, realFetch) { 722 | var fetchFunc = realFetch ? realFetch : fetch; 723 | if (!GQLDeviceID) { 724 | var dcharacters = 'abcdefghijklmnopqrstuvwxyz0123456789'; 725 | var dcharactersLength = dcharacters.length; 726 | for (var i = 0; i < 32; i++) { 727 | GQLDeviceID += dcharacters.charAt(Math.floor(Math.random() * dcharactersLength)); 728 | } 729 | } 730 | return fetchFunc('https://gql.twitch.tv/gql', { 731 | method: 'POST', 732 | body: JSON.stringify(body), 733 | headers: { 734 | 'Client-ID': ClientID, 735 | 'Device-ID': GQLDeviceID, 736 | 'X-Device-Id': GQLDeviceID, 737 | 'Client-Version': ClientVersion, 738 | 'Client-Session-Id': ClientSession 739 | } 740 | }); 741 | } 742 | 743 | function doTwitchPlayerTask(isPausePlay, isCheckQuality, isCorrectBuffer, isAutoQuality, setAutoQuality) { 744 | //This will do an instant pause/play to return to original quality once the ad is finished. 745 | //We also use this function to get the current video player quality set by the user. 746 | //We also use this function to quickly pause/play the player when switching tabs to stop delays. 747 | try { 748 | var videoController = null; 749 | var videoPlayer = null; 750 | 751 | function findReactNode(root, constraint) { 752 | if (root.stateNode && constraint(root.stateNode)) { 753 | return root.stateNode; 754 | } 755 | let node = root.child; 756 | while (node) { 757 | const result = findReactNode(node, constraint); 758 | if (result) { 759 | return result; 760 | } 761 | node = node.sibling; 762 | } 763 | return null; 764 | } 765 | var reactRootNode = null; 766 | var rootNode = document.querySelector('#root'); 767 | if (rootNode && rootNode._reactRootContainer && rootNode._reactRootContainer._internalRoot && rootNode._reactRootContainer._internalRoot.current) { 768 | reactRootNode = rootNode._reactRootContainer._internalRoot.current; 769 | } 770 | videoPlayer = findReactNode(reactRootNode, node => node.setPlayerActive && node.props && node.props.mediaPlayerInstance); 771 | videoPlayer = videoPlayer && videoPlayer.props && videoPlayer.props.mediaPlayerInstance ? videoPlayer.props.mediaPlayerInstance : null; 772 | 773 | if (isPausePlay) { 774 | videoPlayer.pause(); 775 | videoPlayer.play(); 776 | return; 777 | } 778 | if (isCheckQuality) { 779 | if (typeof videoPlayer.getQuality() == 'undefined') { 780 | return; 781 | } 782 | var playerQuality = JSON.stringify(videoPlayer.getQuality()); 783 | if (playerQuality) { 784 | return playerQuality; 785 | } else { 786 | return; 787 | } 788 | } 789 | if (isAutoQuality) { 790 | if (typeof videoPlayer.isAutoQualityMode() == 'undefined') { 791 | return false; 792 | } 793 | var autoQuality = videoPlayer.isAutoQualityMode(); 794 | if (autoQuality) { 795 | videoPlayer.setAutoQualityMode(false); 796 | return autoQuality; 797 | } else { 798 | return false; 799 | } 800 | } 801 | if (setAutoQuality) { 802 | videoPlayer.setAutoQualityMode(true); 803 | return; 804 | } 805 | //This only happens when switching tabs and is to correct the high latency caused when opening background tabs and going to them at a later time. 806 | //We check that this is a live stream by the page URL, to prevent vod/clip pause/plays. 807 | try { 808 | var currentPageURL = document.URL; 809 | var isLive = true; 810 | if (currentPageURL.includes('videos/') || currentPageURL.includes('clip/')) { 811 | isLive = false; 812 | } 813 | if (isCorrectBuffer && isLive) { 814 | //A timer is needed due to the player not resuming without it. 815 | setTimeout(function() { 816 | //If latency to broadcaster is above 5 or 15 seconds upon switching tabs, we pause and play the player to reset the latency. 817 | //If latency is between 0-6, user can manually pause and resume to reset latency further. 818 | if (videoPlayer.isLiveLowLatency() && videoPlayer.getLiveLatency() > 5) { 819 | videoPlayer.pause(); 820 | videoPlayer.play(); 821 | } else if (videoPlayer.getLiveLatency() > 15) { 822 | videoPlayer.pause(); 823 | videoPlayer.play(); 824 | } 825 | }, 3000); 826 | } 827 | } catch (err) {} 828 | } catch (err) {} 829 | } 830 | 831 | var localDeviceID = null; 832 | localDeviceID = window.localStorage.getItem('local_copy_unique_id'); 833 | 834 | function hookFetch() { 835 | var realFetch = window.fetch; 836 | window.fetch = function(url, init, ...args) { 837 | if (typeof url === 'string') { 838 | //Check if squad stream. 839 | if (window.location.pathname.includes('/squad')) { 840 | if (twitchMainWorker) { 841 | twitchMainWorker.postMessage({ 842 | key: 'UpdateIsSquadStream', 843 | value: true 844 | }); 845 | } 846 | } else { 847 | if (twitchMainWorker) { 848 | twitchMainWorker.postMessage({ 849 | key: 'UpdateIsSquadStream', 850 | value: false 851 | }); 852 | } 853 | } 854 | if (url.includes('/access_token') || url.includes('gql')) { 855 | //Device ID is used when notifying Twitch of ads. 856 | var deviceId = init.headers['X-Device-Id']; 857 | if (typeof deviceId !== 'string') { 858 | deviceId = init.headers['Device-ID']; 859 | } 860 | //Added to prevent eventual UBlock conflicts. 861 | if (typeof deviceId === 'string' && !deviceId.includes('twitch-web-wall-mason')) { 862 | GQLDeviceID = deviceId; 863 | } else if (localDeviceID) { 864 | GQLDeviceID = localDeviceID.replace('"', ''); 865 | GQLDeviceID = GQLDeviceID.replace('"', ''); 866 | } 867 | if (GQLDeviceID && twitchMainWorker) { 868 | if (typeof init.headers['X-Device-Id'] === 'string') { 869 | init.headers['X-Device-Id'] = GQLDeviceID; 870 | } 871 | if (typeof init.headers['Device-ID'] === 'string') { 872 | init.headers['Device-ID'] = GQLDeviceID; 873 | } 874 | twitchMainWorker.postMessage({ 875 | key: 'UpdateDeviceId', 876 | value: GQLDeviceID 877 | }); 878 | } 879 | //Client version is used in GQL requests. 880 | var clientVersion = init.headers['Client-Version']; 881 | if (clientVersion && typeof clientVersion == 'string') { 882 | ClientVersion = clientVersion; 883 | } 884 | if (ClientVersion && twitchMainWorker) { 885 | twitchMainWorker.postMessage({ 886 | key: 'UpdateClientVersion', 887 | value: ClientVersion 888 | }); 889 | } 890 | //Client session is used in GQL requests. 891 | var clientSession = init.headers['Client-Session-Id']; 892 | if (clientSession && typeof clientSession == 'string') { 893 | ClientSession = clientSession; 894 | } 895 | if (ClientSession && twitchMainWorker) { 896 | twitchMainWorker.postMessage({ 897 | key: 'UpdateClientSession', 898 | value: ClientSession 899 | }); 900 | } 901 | //Client ID is used in GQL requests. 902 | if (url.includes('gql') && init && typeof init.body === 'string' && init.body.includes('PlaybackAccessToken')) { 903 | var clientId = init.headers['Client-ID']; 904 | if (clientId && typeof clientId == 'string') { 905 | ClientID = clientId; 906 | } else { 907 | clientId = init.headers['Client-Id']; 908 | if (clientId && typeof clientId == 'string') { 909 | ClientID = clientId; 910 | } 911 | } 912 | if (ClientID && twitchMainWorker) { 913 | twitchMainWorker.postMessage({ 914 | key: 'UpdateClientId', 915 | value: ClientID 916 | }); 917 | } 918 | } 919 | //To prevent pause/resume loop for mid-rolls. 920 | if (url.includes('gql') && init && typeof init.body === 'string' && init.body.includes('PlaybackAccessToken') && init.body.includes('picture-by-picture')) { 921 | init.body = ''; 922 | } 923 | var isPBYPRequest = url.includes('picture-by-picture'); 924 | if (isPBYPRequest) { 925 | url = ''; 926 | } 927 | } 928 | } 929 | return realFetch.apply(this, arguments); 930 | }; 931 | } 932 | hookFetch(); -------------------------------------------------------------------------------- /firefox/background.js: -------------------------------------------------------------------------------- 1 | //Show options and install message on first install only. 2 | function handleInstalled(details) { 3 | if (details.reason == 'install') { 4 | let createData = { 5 | focused: true, 6 | type: "popup", 7 | url: "popup/install.html", 8 | width: 365, 9 | height: 750, 10 | }; 11 | let creating = chrome.windows.create(createData); 12 | } 13 | } 14 | 15 | chrome.runtime.onInstalled.addListener(handleInstalled); 16 | 17 | //Block ad trackers and ad serving scripts. 18 | function blockURL(requestDetails) { 19 | return { 20 | cancel: true 21 | }; 22 | } 23 | 24 | //These are the Twitch ad trackers and ad serving script URLs. 25 | chrome.webRequest.onBeforeRequest.addListener( 26 | blockURL, 27 | {urls: ["https://*.amazon-adsystem.com/*","https://cdn.krxd.net/*","https://script.ioam.de/iam.js","https://edge.quantserve.com/quant.js","https://ddacn6pr5v0tl.cloudfront.net/*","https://ddacn6pr5v0tl.cloudfront.net/custom-moat-video-native.min.js","https://d2v02itv0y9u9t.cloudfront.net/dist/1.0.5/v6s.js","https://d2v02itv0y9u9t.cloudfront.net/dist/1.0.8/v6s.js","https://d2v02itv0y9u9t.cloudfront.net/*","https://*.imrworldwide.com/*","https://countess.twitch.tv/*","https://*.scorecardresearch.com/*","https://www.googletagservices.com/tag/js/gpt.js","*://*.branch.io/*","*://comscore.com/*"]}, 28 | ["blocking"] 29 | ); -------------------------------------------------------------------------------- /firefox/content.js: -------------------------------------------------------------------------------- 1 | //Get extension settings. 2 | //Check if Firefox or not. 3 | const isFirefox = !chrome.app; 4 | 5 | function updateSettings() { 6 | browser.storage.local.get(['blockingMessageTTV','forcedQualityTTV','proxyTTV','proxyQualityTTV']).then(result => { 7 | var settings = { 8 | BannerVisible: true, 9 | ForcedQuality: null, 10 | ProxyType: null, 11 | ProxyQuality: null, 12 | }; 13 | if (result.blockingMessageTTV === 'true' || result.blockingMessageTTV === 'false') { 14 | settings.BannerVisible = result.blockingMessageTTV === 'true'; 15 | } 16 | if (result.forcedQualityTTV) { 17 | settings.ForcedQuality = result.forcedQualityTTV; 18 | } 19 | if (result.proxyTTV) { 20 | settings.ProxyType = result.proxyTTV; 21 | } 22 | if (result.proxyQualityTTV) { 23 | settings.ProxyQuality = result.proxyQualityTTV; 24 | } 25 | postMessage({ 26 | type: 'SetTwitchAdblockSettings', 27 | settings: settings, 28 | }, '*'); 29 | }); 30 | } 31 | 32 | function removeVideoAds() { 33 | //This stops Twitch from pausing the player when in another tab and an ad shows. 34 | try { 35 | Object.defineProperty(document, 'visibilityState', { 36 | get() { 37 | return 'visible'; 38 | } 39 | }); 40 | Object.defineProperty(document, 'hidden', { 41 | get() { 42 | return false; 43 | } 44 | }); 45 | const block = e => { 46 | e.preventDefault(); 47 | e.stopPropagation(); 48 | e.stopImmediatePropagation(); 49 | }; 50 | const process = e => { 51 | e.preventDefault(); 52 | e.stopPropagation(); 53 | e.stopImmediatePropagation(); 54 | //This corrects the background tab buffer bug when switching to the background tab for the first time after an extended period. 55 | doTwitchPlayerTask(false, false, true, false, false); 56 | }; 57 | document.addEventListener('visibilitychange', process, true); 58 | document.addEventListener('webkitvisibilitychange', block, true); 59 | document.addEventListener('mozvisibilitychange', block, true); 60 | document.addEventListener('hasFocus', block, true); 61 | if (/Firefox/.test(navigator.userAgent)) { 62 | Object.defineProperty(document, 'mozHidden', { 63 | get() { 64 | return false; 65 | } 66 | }); 67 | } else { 68 | Object.defineProperty(document, 'webkitHidden', { 69 | get() { 70 | return false; 71 | } 72 | }); 73 | } 74 | } catch (err) {} 75 | 76 | //Send settings updates to worker. 77 | window.addEventListener('message', (event) => { 78 | if (event.source != window) { 79 | return; 80 | } 81 | if (event.data.type && event.data.type == 'SetTwitchAdblockSettings' && event.data.settings) { 82 | TwitchAdblockSettings = event.data.settings; 83 | } 84 | }, false); 85 | 86 | function declareOptions(scope) { 87 | scope.AdSignifier = 'stitched'; 88 | scope.ClientID = 'kimne78kx3ncx6brgo4mv6wki5h1ko'; 89 | scope.ClientVersion = 'null'; 90 | scope.ClientSession = 'null'; 91 | //scope.PlayerType1 = 'site'; //Source - NOTE: This is unused as it's implicitly used by the website iself 92 | scope.PlayerType2 = 'embed'; //Source 93 | scope.PlayerType3 = 'proxy'; //Source 94 | scope.PlayerType4 = 'thunderdome'; //480p 95 | scope.CurrentChannelName = null; 96 | scope.UsherParams = null; 97 | scope.WasShowingAd = false; 98 | scope.GQLDeviceID = null; 99 | scope.IsSquadStream = false; 100 | scope.StreamInfos = []; 101 | scope.StreamInfosByUrl = []; 102 | scope.MainUrlByUrl = []; 103 | scope.EncodingCacheTimeout = 60000; 104 | scope.DefaultProxyType = null; 105 | scope.DefaultForcedQuality = null; 106 | scope.DefaultProxyQuality = null; 107 | } 108 | 109 | declareOptions(window); 110 | 111 | var TwitchAdblockSettings = { 112 | BannerVisible: true, 113 | ForcedQuality: null, 114 | ProxyType: null, 115 | ProxyQuality: null, 116 | }; 117 | 118 | var twitchMainWorker = null; 119 | var adBlockDiv = null; 120 | var OriginalVideoPlayerQuality = null; 121 | var IsPlayerAutoQuality = null; 122 | const oldWorker = window.Worker; 123 | 124 | window.Worker = class Worker extends oldWorker { 125 | constructor(twitchBlobUrl) { 126 | if (twitchMainWorker) { 127 | super(twitchBlobUrl); 128 | return; 129 | } 130 | var jsURL = getWasmWorkerUrl(twitchBlobUrl); 131 | if (typeof jsURL !== 'string') { 132 | super(twitchBlobUrl); 133 | return; 134 | } 135 | var newBlobStr = ` 136 | ${getStreamUrlForResolution.toString()} 137 | ${getStreamForResolution.toString()} 138 | ${stripUnusedParams.toString()} 139 | ${processM3U8.toString()} 140 | ${hookWorkerFetch.toString()} 141 | ${declareOptions.toString()} 142 | ${getAccessToken.toString()} 143 | ${gqlRequest.toString()} 144 | ${adRecordgqlPacket.toString()} 145 | ${tryNotifyTwitch.toString()} 146 | ${parseAttributes.toString()} 147 | declareOptions(self); 148 | self.TwitchAdblockSettings = ${JSON.stringify(TwitchAdblockSettings)}; 149 | self.addEventListener('message', function(e) { 150 | if (e.data.key == 'UpdateIsSquadStream') { 151 | IsSquadStream = e.data.value; 152 | } else if (e.data.key == 'UpdateClientVersion') { 153 | ClientVersion = e.data.value; 154 | } else if (e.data.key == 'UpdateClientSession') { 155 | ClientSession = e.data.value; 156 | } else if (e.data.key == 'UpdateClientId') { 157 | ClientID = e.data.value; 158 | } else if (e.data.key == 'UpdateDeviceId') { 159 | GQLDeviceID = e.data.value; 160 | } 161 | }); 162 | hookWorkerFetch(); 163 | importScripts('${jsURL}'); 164 | `; 165 | super(URL.createObjectURL(new Blob([newBlobStr]))); 166 | twitchMainWorker = this; 167 | this.onmessage = function(e) { 168 | if (e.data.key == 'ShowAdBlockBanner') { 169 | if (!TwitchAdblockSettings.BannerVisible) { 170 | return; 171 | } 172 | if (adBlockDiv == null) { 173 | adBlockDiv = getAdBlockDiv(); 174 | } 175 | adBlockDiv.P.textContent = 'Blocking ads...'; 176 | adBlockDiv.style.display = 'block'; 177 | } else if (e.data.key == 'HideAdBlockBanner') { 178 | if (adBlockDiv == null) { 179 | adBlockDiv = getAdBlockDiv(); 180 | } 181 | adBlockDiv.style.display = 'none'; 182 | } else if (e.data.key == 'PauseResumePlayer') { 183 | doTwitchPlayerTask(true, false, false, false, false); 184 | } else if (e.data.key == 'ForceChangeQuality') { 185 | //This is used to fix the bug where the video would freeze. 186 | try { 187 | if (navigator.userAgent.toLowerCase().indexOf('firefox') == -1) { 188 | return; 189 | } 190 | var autoQuality = doTwitchPlayerTask(false, false, false, true, false); 191 | var currentQuality = doTwitchPlayerTask(false, true, false, false, false); 192 | 193 | if (IsPlayerAutoQuality == null) { 194 | IsPlayerAutoQuality = autoQuality; 195 | } 196 | if (OriginalVideoPlayerQuality == null) { 197 | OriginalVideoPlayerQuality = currentQuality; 198 | } 199 | if (!currentQuality.includes('480') || e.data.value != null) { 200 | if (!OriginalVideoPlayerQuality.includes('480')) { 201 | var settingsMenu = document.querySelector('div[data-a-target="player-settings-menu"]'); 202 | if (settingsMenu == null) { 203 | var settingsCog = document.querySelector('button[data-a-target="player-settings-button"]'); 204 | if (settingsCog) { 205 | settingsCog.click(); 206 | var qualityMenu = document.querySelector('button[data-a-target="player-settings-menu-item-quality"]'); 207 | if (qualityMenu) { 208 | qualityMenu.click(); 209 | } 210 | var lowQuality = document.querySelectorAll('input[data-a-target="tw-radio"'); 211 | if (lowQuality) { 212 | var qualityToSelect = lowQuality.length - 3; 213 | if (e.data.value != null) { 214 | if (e.data.value.includes('original')) { 215 | e.data.value = OriginalVideoPlayerQuality; 216 | if (IsPlayerAutoQuality) { 217 | e.data.value = 'auto'; 218 | } 219 | } 220 | if (e.data.value.includes('160p')) { 221 | qualityToSelect = 5; 222 | } 223 | if (e.data.value.includes('360p')) { 224 | qualityToSelect = 4; 225 | } 226 | if (e.data.value.includes('480p')) { 227 | qualityToSelect = 3; 228 | } 229 | if (e.data.value.includes('720p')) { 230 | qualityToSelect = 2; 231 | } 232 | if (e.data.value.includes('822p')) { 233 | qualityToSelect = 2; 234 | } 235 | if (e.data.value.includes('864p')) { 236 | qualityToSelect = 2; 237 | } 238 | if (e.data.value.includes('900p')) { 239 | qualityToSelect = 2; 240 | } 241 | if (e.data.value.includes('936p')) { 242 | qualityToSelect = 2; 243 | } 244 | if (e.data.value.includes('960p')) { 245 | qualityToSelect = 2; 246 | } 247 | if (e.data.value.includes('1080p')) { 248 | qualityToSelect = 2; 249 | } 250 | if (e.data.value.includes('source')) { 251 | qualityToSelect = 1; 252 | } 253 | if (e.data.value.includes('auto')) { 254 | qualityToSelect = 0; 255 | } 256 | } 257 | var currentQualityLS = window.localStorage.getItem('video-quality'); 258 | 259 | lowQuality[qualityToSelect].click(); 260 | window.localStorage.setItem('video-quality', currentQualityLS); 261 | 262 | if (e.data.value != null) { 263 | OriginalVideoPlayerQuality = null; 264 | IsPlayerAutoQuality = null; 265 | doTwitchPlayerTask(false, false, false, true, true); 266 | } 267 | } 268 | 269 | } 270 | } 271 | } 272 | } 273 | } catch (err) { 274 | OriginalVideoPlayerQuality = null; 275 | IsPlayerAutoQuality = null; 276 | } 277 | } 278 | }; 279 | 280 | function getAdBlockDiv() { 281 | //To display a notification to the user, that an ad is being blocked. 282 | var playerRootDiv = document.querySelector('.video-player'); 283 | var adBlockDiv = null; 284 | if (playerRootDiv != null) { 285 | adBlockDiv = playerRootDiv.querySelector('.adblock-overlay'); 286 | if (adBlockDiv == null) { 287 | adBlockDiv = document.createElement('div'); 288 | adBlockDiv.className = 'adblock-overlay'; 289 | adBlockDiv.innerHTML = '

'; 290 | adBlockDiv.style.display = 'none'; 291 | adBlockDiv.P = adBlockDiv.querySelector('p'); 292 | playerRootDiv.appendChild(adBlockDiv); 293 | } 294 | } 295 | return adBlockDiv; 296 | } 297 | } 298 | }; 299 | 300 | function getWasmWorkerUrl(twitchBlobUrl) { 301 | var req = new XMLHttpRequest(); 302 | req.open('GET', twitchBlobUrl, false); 303 | req.send(); 304 | return req.responseText.split("'")[1]; 305 | } 306 | 307 | function hookWorkerFetch() { 308 | console.log('Twitch adblocker is enabled'); 309 | var realFetch = fetch; 310 | fetch = async function(url, options) { 311 | if (typeof url === 'string') { 312 | if (url.includes('video-weaver')) { 313 | return new Promise(function(resolve, reject) { 314 | var processAfter = async function(response) { 315 | //Here we check the m3u8 for any ads and also try fallback player types if needed. 316 | 317 | var responseText = await response.text(); 318 | var weaverText = null; 319 | 320 | weaverText = await processM3U8(url, responseText, realFetch, PlayerType2); 321 | if (weaverText.includes(AdSignifier)) { 322 | weaverText = await processM3U8(url, responseText, realFetch, PlayerType3); 323 | } 324 | if (weaverText.includes(AdSignifier)) { 325 | weaverText = await processM3U8(url, responseText, realFetch, PlayerType4); 326 | } 327 | 328 | resolve(new Response(weaverText)); 329 | }; 330 | var send = function() { 331 | return realFetch(url, options).then(function(response) { 332 | processAfter(response); 333 | })['catch'](function(err) { 334 | reject(err); 335 | }); 336 | }; 337 | send(); 338 | }); 339 | } else if (url.includes('/api/channel/hls/')) { 340 | var channelName = (new URL(url)).pathname.match(/([^\/]+)(?=\.\w+$)/)[0]; 341 | UsherParams = (new URL(url)).search; 342 | CurrentChannelName = channelName; 343 | //To prevent pause/resume loop for mid-rolls. 344 | var isPBYPRequest = url.includes('picture-by-picture'); 345 | if (isPBYPRequest) { 346 | url = ''; 347 | } 348 | return new Promise(function(resolve, reject) { 349 | var processAfter = async function(response) { 350 | if (response.status == 200) { 351 | encodingsM3u8 = await response.text(); 352 | var streamInfo = StreamInfos[channelName]; 353 | if (streamInfo == null) { 354 | StreamInfos[channelName] = streamInfo = {}; 355 | } 356 | streamInfo.ChannelName = channelName; 357 | streamInfo.Urls = [];// xxx.m3u8 -> { Resolution: "284x160", FrameRate: 30.0 } 358 | streamInfo.EncodingsM3U8Cache = []; 359 | streamInfo.EncodingsM3U8 = encodingsM3u8; 360 | var lines = encodingsM3u8.replace('\r', '').split('\n'); 361 | for (var i = 0; i < lines.length; i++) { 362 | if (!lines[i].startsWith('#') && lines[i].includes('.m3u8')) { 363 | streamInfo.Urls[lines[i]] = -1; 364 | if (i > 0 && lines[i - 1].startsWith('#EXT-X-STREAM-INF')) { 365 | var attributes = parseAttributes(lines[i - 1]); 366 | var resolution = attributes['RESOLUTION']; 367 | var frameRate = attributes['FRAME-RATE']; 368 | if (resolution) { 369 | streamInfo.Urls[lines[i]] = { 370 | Resolution: resolution, 371 | FrameRate: frameRate 372 | }; 373 | } 374 | } 375 | StreamInfosByUrl[lines[i]] = streamInfo; 376 | MainUrlByUrl[lines[i]] = url; 377 | } 378 | } 379 | resolve(new Response(encodingsM3u8)); 380 | } else { 381 | resolve(response); 382 | } 383 | }; 384 | var send = function() { 385 | return realFetch(url, options).then(function(response) { 386 | processAfter(response); 387 | })['catch'](function(err) { 388 | reject(err); 389 | }); 390 | }; 391 | send(); 392 | }); 393 | } 394 | } 395 | return realFetch.apply(this, arguments); 396 | }; 397 | } 398 | 399 | function getStreamUrlForResolution(encodingsM3u8, resolutionInfo, qualityOverrideStr) { 400 | var qualityOverride = 0; 401 | if (qualityOverrideStr && qualityOverrideStr.endsWith('p')) { 402 | qualityOverride = qualityOverrideStr.substr(0, qualityOverrideStr.length - 1) | 0; 403 | } 404 | var qualityOverrideFoundQuality = 0; 405 | var qualityOverrideFoundFrameRate = 0; 406 | var encodingsLines = encodingsM3u8.replace('\r', '').split('\n'); 407 | var firstUrl = null; 408 | var lastUrl = null; 409 | var matchedResolutionUrl = null; 410 | var matchedFrameRate = false; 411 | for (var i = 0; i < encodingsLines.length; i++) { 412 | if (!encodingsLines[i].startsWith('#') && encodingsLines[i].includes('.m3u8')) { 413 | if (i > 0 && encodingsLines[i - 1].startsWith('#EXT-X-STREAM-INF')) { 414 | var attributes = parseAttributes(encodingsLines[i - 1]); 415 | var resolution = attributes['RESOLUTION']; 416 | var frameRate = attributes['FRAME-RATE']; 417 | if (resolution) { 418 | if (qualityOverride) { 419 | var quality = resolution.toLowerCase().split('x')[1]; 420 | if (quality == qualityOverride) { 421 | qualityOverrideFoundQuality = quality; 422 | qualityOverrideFoundFrameRate = frameRate; 423 | matchedResolutionUrl = encodingsLines[i]; 424 | if (frameRate < 40) { 425 | //console.log(`qualityOverride(A) quality:${quality} frameRate:${frameRate}`); 426 | return matchedResolutionUrl; 427 | } 428 | } else if (quality < qualityOverride) { 429 | //if (matchedResolutionUrl) { 430 | // console.log(`qualityOverride(B) quality:${qualityOverrideFoundQuality} frameRate:${qualityOverrideFoundFrameRate}`); 431 | //} else { 432 | // console.log(`qualityOverride(C) quality:${quality} frameRate:${frameRate}`); 433 | //} 434 | return matchedResolutionUrl ? matchedResolutionUrl : encodingsLines[i]; 435 | } 436 | } else if ((!resolutionInfo || resolution == resolutionInfo.Resolution) && 437 | (!matchedResolutionUrl || (!matchedFrameRate && frameRate == resolutionInfo.FrameRate))) { 438 | matchedResolutionUrl = encodingsLines[i]; 439 | matchedFrameRate = frameRate == resolutionInfo.FrameRate; 440 | if (matchedFrameRate) { 441 | return matchedResolutionUrl; 442 | } 443 | } 444 | } 445 | if (firstUrl == null) { 446 | firstUrl = encodingsLines[i]; 447 | } 448 | lastUrl = encodingsLines[i]; 449 | } 450 | } 451 | } 452 | if (qualityOverride) { 453 | return lastUrl; 454 | } 455 | return matchedResolutionUrl ? matchedResolutionUrl : firstUrl; 456 | } 457 | 458 | async function getStreamForResolution(streamInfo, resolutionInfo, encodingsM3u8, fallbackStreamStr, playerType, realFetch) { 459 | var qualityOverride = null; 460 | if (playerType === 'proxy') { 461 | qualityOverride = TwitchAdblockSettings.ProxyQuality ? TwitchAdblockSettings.ProxyQuality : DefaultProxyQuality; 462 | } 463 | if (streamInfo.EncodingsM3U8Cache[playerType].Resolution != resolutionInfo.Resolution || 464 | streamInfo.EncodingsM3U8Cache[playerType].RequestTime < Date.now() - EncodingCacheTimeout) { 465 | console.log(`Blocking ads (type:${playerType}, resolution:${resolutionInfo.Resolution}, frameRate:${resolutionInfo.FrameRate}, qualityOverride:${qualityOverride})`); 466 | } 467 | streamInfo.EncodingsM3U8Cache[playerType].RequestTime = Date.now(); 468 | streamInfo.EncodingsM3U8Cache[playerType].Value = encodingsM3u8; 469 | streamInfo.EncodingsM3U8Cache[playerType].Resolution = resolutionInfo.Resolution; 470 | var streamM3u8Url = getStreamUrlForResolution(encodingsM3u8, resolutionInfo, qualityOverride); 471 | var streamM3u8Response = await realFetch(streamM3u8Url); 472 | if (streamM3u8Response.status == 200) { 473 | var m3u8Text = await streamM3u8Response.text(); 474 | WasShowingAd = true; 475 | postMessage({ 476 | key: 'ShowAdBlockBanner' 477 | }); 478 | postMessage({ 479 | key: 'ForceChangeQuality' 480 | }); 481 | 482 | if (!m3u8Text || m3u8Text.includes(AdSignifier)) { 483 | streamInfo.EncodingsM3U8Cache[playerType].Value = null; 484 | } 485 | 486 | return m3u8Text; 487 | } else { 488 | streamInfo.EncodingsM3U8Cache[playerType].Value = null; 489 | return fallbackStreamStr; 490 | } 491 | } 492 | 493 | function stripUnusedParams(str, params) { 494 | if (!params) { 495 | params = [ 'token', 'sig' ]; 496 | } 497 | var tempUrl = new URL('https://localhost/' + str); 498 | for (var i = 0; i < params.length; i++) { 499 | tempUrl.searchParams.delete(params[i]); 500 | } 501 | return tempUrl.pathname.substring(1) + tempUrl.search; 502 | } 503 | 504 | async function processM3U8(url, textStr, realFetch, playerType) { 505 | //Checks the m3u8 for ads and if it finds one, instead returns an ad-free stream. 506 | 507 | var streamInfo = StreamInfosByUrl[url]; 508 | 509 | //Ad blocking for squad streams is disabled due to the way multiple weaver urls are used. No workaround so far. 510 | if (IsSquadStream == true) { 511 | return textStr; 512 | } 513 | 514 | if (!textStr) { 515 | return textStr; 516 | } 517 | 518 | //Some live streams use mp4. 519 | if (!textStr.includes('.ts') && !textStr.includes('.mp4')) { 520 | return textStr; 521 | } 522 | 523 | var haveAdTags = textStr.includes(AdSignifier); 524 | 525 | if (haveAdTags) { 526 | 527 | var isMidroll = textStr.includes('"MIDROLL"') || textStr.includes('"midroll"'); 528 | 529 | //Reduces ad frequency. TODO: Reduce the number of requests. This is really spamming Twitch with requests. 530 | if (!isMidroll) { 531 | try { 532 | //tryNotifyTwitch(textStr); 533 | } catch (err) {} 534 | } 535 | 536 | var currentResolution = null; 537 | if (streamInfo && streamInfo.Urls) { 538 | for (const [resUrl, resInfo] of Object.entries(streamInfo.Urls)) { 539 | if (resUrl == url) { 540 | currentResolution = resInfo; 541 | //console.log(resInfo.Resolution); 542 | break; 543 | } 544 | } 545 | } 546 | 547 | // Keep the m3u8 around for a little while (once per ad) before requesting a new one 548 | var encodingsM3U8Cache = streamInfo.EncodingsM3U8Cache[playerType]; 549 | if (encodingsM3U8Cache) { 550 | if (encodingsM3U8Cache.Value && encodingsM3U8Cache.RequestTime >= Date.now() - EncodingCacheTimeout) { 551 | try { 552 | var result = getStreamForResolution(streamInfo, currentResolution, encodingsM3U8Cache.Value, null, playerType, realFetch); 553 | if (result) { 554 | return result; 555 | } 556 | } catch (err) { 557 | encodingsM3U8Cache.Value = null; 558 | } 559 | } 560 | } else { 561 | streamInfo.EncodingsM3U8Cache[playerType] = { 562 | RequestTime: Date.now(), 563 | Value: null, 564 | Resolution: null 565 | }; 566 | } 567 | 568 | if (playerType === 'proxy') { 569 | try { 570 | var proxyType = TwitchAdblockSettings.ProxyType ? TwitchAdblockSettings.ProxyType : DefaultProxyType; 571 | var encodingsM3u8Response = null; 572 | /*var tempUrl = stripUnusedParams(MainUrlByUrl[url]); 573 | const match = /(hls|vod)\/(.+?)$/gim.exec(tempUrl);*/ 574 | switch (proxyType) { 575 | case 'TTV LOL': 576 | encodingsM3u8Response = await realFetch('https://api.ttv.lol/playlist/' + CurrentChannelName + '.m3u8%3Fallow_source%3Dtrue'/* + encodeURIComponent(match[2])*/, {headers: {'X-Donate-To': 'https://ttv.lol/donate'}}); 577 | break; 578 | /*case 'Purple Adblock':// Broken... 579 | encodingsM3u8Response = await realFetch('https://eu1.jupter.ga/channel/' + CurrentChannelName);*/ 580 | case 'Falan':// https://greasyfork.org/en/scripts/425139-twitch-ad-fix/code 581 | encodingsM3u8Response = await realFetch(atob('aHR0cHM6Ly9qaWdnbGUuYmV5cGF6YXJpZ3VydXN1LndvcmtlcnMuZGV2') + '/hls/' + CurrentChannelName + '.m3u8%3Fallow_source%3Dtrue'/* + encodeURIComponent(match[2])*/); 582 | break; 583 | } 584 | if (encodingsM3u8Response && encodingsM3u8Response.status === 200) { 585 | return getStreamForResolution(streamInfo, currentResolution, await encodingsM3u8Response.text(), textStr, playerType, realFetch); 586 | } 587 | } catch (err) {} 588 | return textStr; 589 | } 590 | 591 | var accessTokenResponse = await getAccessToken(CurrentChannelName, playerType); 592 | if (accessTokenResponse.status === 200) { 593 | var accessToken = await accessTokenResponse.json(); 594 | try { 595 | var urlInfo = new URL('https://usher.ttvnw.net/api/channel/hls/' + CurrentChannelName + '.m3u8' + UsherParams); 596 | urlInfo.searchParams.set('sig', accessToken.data.streamPlaybackAccessToken.signature); 597 | urlInfo.searchParams.set('token', accessToken.data.streamPlaybackAccessToken.value); 598 | var encodingsM3u8Response = await realFetch(urlInfo.href); 599 | if (encodingsM3u8Response.status === 200) { 600 | return getStreamForResolution(streamInfo, currentResolution, await encodingsM3u8Response.text(), textStr, playerType, realFetch); 601 | } else { 602 | return textStr; 603 | } 604 | } catch (err) {} 605 | return textStr; 606 | } else { 607 | return textStr; 608 | } 609 | } else { 610 | if (WasShowingAd) { 611 | console.log('Finished blocking ads'); 612 | WasShowingAd = false; 613 | //Here we put player back to original quality and remove the blocking message. 614 | postMessage({ 615 | key: 'ForceChangeQuality', 616 | value: 'original' 617 | }); 618 | postMessage({ 619 | key: 'PauseResumePlayer' 620 | }); 621 | postMessage({ 622 | key: 'HideAdBlockBanner' 623 | }); 624 | } 625 | return textStr; 626 | } 627 | return textStr; 628 | } 629 | 630 | function parseAttributes(str) { 631 | return Object.fromEntries( 632 | str.split(/(?:^|,)((?:[^=]*)=(?:"[^"]*"|[^,]*))/) 633 | .filter(Boolean) 634 | .map(x => { 635 | const idx = x.indexOf('='); 636 | const key = x.substring(0, idx); 637 | const value = x.substring(idx + 1); 638 | const num = Number(value); 639 | return [key, Number.isNaN(num) ? value.startsWith('"') ? JSON.parse(value) : value : num]; 640 | })); 641 | } 642 | 643 | async function tryNotifyTwitch(streamM3u8) { 644 | //We notify that an ad was requested but was not visible and was also muted. 645 | var matches = streamM3u8.match(/#EXT-X-DATERANGE:(ID="stitched-ad-[^\n]+)\n/); 646 | if (matches.length > 1) { 647 | const attrString = matches[1]; 648 | const attr = parseAttributes(attrString); 649 | var podLength = parseInt(attr['X-TV-TWITCH-AD-POD-LENGTH'] ? attr['X-TV-TWITCH-AD-POD-LENGTH'] : '1'); 650 | var podPosition = parseInt(attr['X-TV-TWITCH-AD-POD-POSITION'] ? attr['X-TV-TWITCH-AD-POD-POSITION'] : '0'); 651 | var radToken = attr['X-TV-TWITCH-AD-RADS-TOKEN']; 652 | var lineItemId = attr['X-TV-TWITCH-AD-LINE-ITEM-ID']; 653 | var orderId = attr['X-TV-TWITCH-AD-ORDER-ID']; 654 | var creativeId = attr['X-TV-TWITCH-AD-CREATIVE-ID']; 655 | var adId = attr['X-TV-TWITCH-AD-ADVERTISER-ID']; 656 | var rollType = attr['X-TV-TWITCH-AD-ROLL-TYPE'].toLowerCase(); 657 | const baseData = { 658 | stitched: true, 659 | roll_type: rollType, 660 | player_mute: true, 661 | player_volume: 0.0, 662 | visible: false, 663 | }; 664 | for (let podPosition = 0; podPosition < podLength; podPosition++) { 665 | const extendedData = { 666 | ...baseData, 667 | ad_id: adId, 668 | ad_position: podPosition, 669 | duration: 0, 670 | creative_id: creativeId, 671 | total_ads: podLength, 672 | order_id: orderId, 673 | line_item_id: lineItemId, 674 | }; 675 | await gqlRequest(adRecordgqlPacket('video_ad_impression', radToken, extendedData)); 676 | for (let quartile = 0; quartile < 4; quartile++) { 677 | await gqlRequest( 678 | adRecordgqlPacket('video_ad_quartile_complete', radToken, { 679 | ...extendedData, 680 | quartile: quartile + 1, 681 | }) 682 | ); 683 | } 684 | await gqlRequest(adRecordgqlPacket('video_ad_pod_complete', radToken, baseData)); 685 | } 686 | } 687 | } 688 | 689 | function adRecordgqlPacket(event, radToken, payload) { 690 | return [{ 691 | operationName: 'ClientSideAdEventHandling_RecordAdEvent', 692 | variables: { 693 | input: { 694 | eventName: event, 695 | eventPayload: JSON.stringify(payload), 696 | radToken, 697 | }, 698 | }, 699 | extensions: { 700 | persistedQuery: { 701 | version: 1, 702 | sha256Hash: '7e6c69e6eb59f8ccb97ab73686f3d8b7d85a72a0298745ccd8bfc68e4054ca5b', 703 | }, 704 | }, 705 | }]; 706 | } 707 | 708 | function getAccessToken(channelName, playerType, realFetch) { 709 | var body = null; 710 | var templateQuery = 'query PlaybackAccessToken_Template($login: String!, $isLive: Boolean!, $vodID: ID!, $isVod: Boolean!, $playerType: String!) { streamPlaybackAccessToken(channelName: $login, params: {platform: "web", playerBackend: "mediaplayer", playerType: $playerType}) @include(if: $isLive) { value signature __typename } videoPlaybackAccessToken(id: $vodID, params: {platform: "web", playerBackend: "mediaplayer", playerType: $playerType}) @include(if: $isVod) { value signature __typename }}'; 711 | body = { 712 | operationName: 'PlaybackAccessToken_Template', 713 | query: templateQuery, 714 | variables: { 715 | 'isLive': true, 716 | 'login': channelName, 717 | 'isVod': false, 718 | 'vodID': '', 719 | 'playerType': playerType 720 | } 721 | }; 722 | return gqlRequest(body, realFetch); 723 | } 724 | 725 | function gqlRequest(body, realFetch) { 726 | var fetchFunc = realFetch ? realFetch : fetch; 727 | if (!GQLDeviceID) { 728 | var dcharacters = 'abcdefghijklmnopqrstuvwxyz0123456789'; 729 | var dcharactersLength = dcharacters.length; 730 | for (var i = 0; i < 32; i++) { 731 | GQLDeviceID += dcharacters.charAt(Math.floor(Math.random() * dcharactersLength)); 732 | } 733 | } 734 | return fetchFunc('https://gql.twitch.tv/gql', { 735 | method: 'POST', 736 | body: JSON.stringify(body), 737 | headers: { 738 | 'Client-ID': ClientID, 739 | 'Device-ID': GQLDeviceID, 740 | 'X-Device-Id': GQLDeviceID, 741 | 'Client-Version': ClientVersion, 742 | 'Client-Session-Id': ClientSession 743 | } 744 | }); 745 | } 746 | 747 | function doTwitchPlayerTask(isPausePlay, isCheckQuality, isCorrectBuffer, isAutoQuality, setAutoQuality) { 748 | //This will do an instant pause/play to return to original quality once the ad is finished. 749 | //We also use this function to get the current video player quality set by the user. 750 | //We also use this function to quickly pause/play the player when switching tabs to stop delays. 751 | try { 752 | var videoController = null; 753 | var videoPlayer = null; 754 | 755 | function findReactNode(root, constraint) { 756 | if (root.stateNode && constraint(root.stateNode)) { 757 | return root.stateNode; 758 | } 759 | let node = root.child; 760 | while (node) { 761 | const result = findReactNode(node, constraint); 762 | if (result) { 763 | return result; 764 | } 765 | node = node.sibling; 766 | } 767 | return null; 768 | } 769 | var reactRootNode = null; 770 | var rootNode = document.querySelector('#root'); 771 | if (rootNode && rootNode._reactRootContainer && rootNode._reactRootContainer._internalRoot && rootNode._reactRootContainer._internalRoot.current) { 772 | reactRootNode = rootNode._reactRootContainer._internalRoot.current; 773 | } 774 | videoPlayer = findReactNode(reactRootNode, node => node.setPlayerActive && node.props && node.props.mediaPlayerInstance); 775 | videoPlayer = videoPlayer && videoPlayer.props && videoPlayer.props.mediaPlayerInstance ? videoPlayer.props.mediaPlayerInstance : null; 776 | 777 | if (isPausePlay) { 778 | videoPlayer.pause(); 779 | videoPlayer.play(); 780 | return; 781 | } 782 | if (isCheckQuality) { 783 | if (typeof videoPlayer.getQuality() == 'undefined') { 784 | return; 785 | } 786 | var playerQuality = JSON.stringify(videoPlayer.getQuality()); 787 | if (playerQuality) { 788 | return playerQuality; 789 | } else { 790 | return; 791 | } 792 | } 793 | if (isAutoQuality) { 794 | if (typeof videoPlayer.isAutoQualityMode() == 'undefined') { 795 | return false; 796 | } 797 | var autoQuality = videoPlayer.isAutoQualityMode(); 798 | if (autoQuality) { 799 | videoPlayer.setAutoQualityMode(false); 800 | return autoQuality; 801 | } else { 802 | return false; 803 | } 804 | } 805 | if (setAutoQuality) { 806 | videoPlayer.setAutoQualityMode(true); 807 | return; 808 | } 809 | //This only happens when switching tabs and is to correct the high latency caused when opening background tabs and going to them at a later time. 810 | //We check that this is a live stream by the page URL, to prevent vod/clip pause/plays. 811 | try { 812 | var currentPageURL = document.URL; 813 | var isLive = true; 814 | if (currentPageURL.includes('videos/') || currentPageURL.includes('clip/')) { 815 | isLive = false; 816 | } 817 | if (isCorrectBuffer && isLive) { 818 | //A timer is needed due to the player not resuming without it. 819 | setTimeout(function() { 820 | //If latency to broadcaster is above 5 or 15 seconds upon switching tabs, we pause and play the player to reset the latency. 821 | //If latency is between 0-6, user can manually pause and resume to reset latency further. 822 | if (videoPlayer.isLiveLowLatency() && videoPlayer.getLiveLatency() > 5) { 823 | videoPlayer.pause(); 824 | videoPlayer.play(); 825 | } else if (videoPlayer.getLiveLatency() > 15) { 826 | videoPlayer.pause(); 827 | videoPlayer.play(); 828 | } 829 | }, 3000); 830 | } 831 | } catch (err) {} 832 | } catch (err) {} 833 | } 834 | 835 | var localDeviceID = null; 836 | localDeviceID = window.localStorage.getItem('local_copy_unique_id'); 837 | 838 | function hookFetch() { 839 | var realFetch = window.fetch; 840 | window.fetch = function(url, init, ...args) { 841 | if (typeof url === 'string') { 842 | //Check if squad stream. 843 | if (window.location.pathname.includes('/squad')) { 844 | if (twitchMainWorker) { 845 | twitchMainWorker.postMessage({ 846 | key: 'UpdateIsSquadStream', 847 | value: true 848 | }); 849 | } 850 | } else { 851 | if (twitchMainWorker) { 852 | twitchMainWorker.postMessage({ 853 | key: 'UpdateIsSquadStream', 854 | value: false 855 | }); 856 | } 857 | } 858 | if (url.includes('/access_token') || url.includes('gql')) { 859 | //Device ID is used when notifying Twitch of ads. 860 | var deviceId = init.headers['X-Device-Id']; 861 | if (typeof deviceId !== 'string') { 862 | deviceId = init.headers['Device-ID']; 863 | } 864 | //Added to prevent eventual UBlock conflicts. 865 | if (typeof deviceId === 'string' && !deviceId.includes('twitch-web-wall-mason')) { 866 | GQLDeviceID = deviceId; 867 | } else if (localDeviceID) { 868 | GQLDeviceID = localDeviceID.replace('"', ''); 869 | GQLDeviceID = GQLDeviceID.replace('"', ''); 870 | } 871 | if (GQLDeviceID && twitchMainWorker) { 872 | if (typeof init.headers['X-Device-Id'] === 'string') { 873 | init.headers['X-Device-Id'] = GQLDeviceID; 874 | } 875 | if (typeof init.headers['Device-ID'] === 'string') { 876 | init.headers['Device-ID'] = GQLDeviceID; 877 | } 878 | twitchMainWorker.postMessage({ 879 | key: 'UpdateDeviceId', 880 | value: GQLDeviceID 881 | }); 882 | } 883 | //Client version is used in GQL requests. 884 | var clientVersion = init.headers['Client-Version']; 885 | if (clientVersion && typeof clientVersion == 'string') { 886 | ClientVersion = clientVersion; 887 | } 888 | if (ClientVersion && twitchMainWorker) { 889 | twitchMainWorker.postMessage({ 890 | key: 'UpdateClientVersion', 891 | value: ClientVersion 892 | }); 893 | } 894 | //Client session is used in GQL requests. 895 | var clientSession = init.headers['Client-Session-Id']; 896 | if (clientSession && typeof clientSession == 'string') { 897 | ClientSession = clientSession; 898 | } 899 | if (ClientSession && twitchMainWorker) { 900 | twitchMainWorker.postMessage({ 901 | key: 'UpdateClientSession', 902 | value: ClientSession 903 | }); 904 | } 905 | //Client ID is used in GQL requests. 906 | if (url.includes('gql') && init && typeof init.body === 'string' && init.body.includes('PlaybackAccessToken')) { 907 | var clientId = init.headers['Client-ID']; 908 | if (clientId && typeof clientId == 'string') { 909 | ClientID = clientId; 910 | } else { 911 | clientId = init.headers['Client-Id']; 912 | if (clientId && typeof clientId == 'string') { 913 | ClientID = clientId; 914 | } 915 | } 916 | if (ClientID && twitchMainWorker) { 917 | twitchMainWorker.postMessage({ 918 | key: 'UpdateClientId', 919 | value: ClientID 920 | }); 921 | } 922 | } 923 | //To prevent pause/resume loop for mid-rolls. 924 | if (url.includes('gql') && init && typeof init.body === 'string' && init.body.includes('PlaybackAccessToken') && init.body.includes('picture-by-picture')) { 925 | init.body = ''; 926 | } 927 | var isPBYPRequest = url.includes('picture-by-picture'); 928 | if (isPBYPRequest) { 929 | url = ''; 930 | } 931 | } 932 | } 933 | return realFetch.apply(this, arguments); 934 | }; 935 | } 936 | hookFetch(); 937 | } 938 | 939 | function appendBlockingScript() { 940 | var script = document.createElement('script'); 941 | script.appendChild(document.createTextNode('(' + removeVideoAds + ')();')); 942 | (document.body || document.head || document.documentElement).appendChild(script); 943 | updateSettings(); 944 | } 945 | 946 | if (isFirefox) { 947 | var onOff = browser.storage.sync.get('onOffTTV'); 948 | onOff.then((res) => { 949 | if (res && res.onOffTTV) { 950 | if (res.onOffTTV == 'true') { 951 | appendBlockingScript(); 952 | } 953 | } else { 954 | appendBlockingScript(); 955 | } 956 | }, err => { 957 | appendBlockingScript(); 958 | }); 959 | } else { 960 | chrome.storage.local.get(['onOffTTV'], function(result) { 961 | if (chrome.runtime.lastError) { 962 | appendBlockingScript(); 963 | return; 964 | } 965 | if (result && result.onOffTTV) { 966 | if (result.onOffTTV == 'true') { 967 | appendBlockingScript(); 968 | } 969 | } else { 970 | appendBlockingScript(); 971 | } 972 | }); 973 | } -------------------------------------------------------------------------------- /firefox/icons/twitch-adblock-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muleyo/VideoAdBlockForTwitch/145921a822e830da62d39e36e8aafb8ef22c7be6/firefox/icons/twitch-adblock-32x32.png -------------------------------------------------------------------------------- /firefox/icons/twitch-adblock-48x48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muleyo/VideoAdBlockForTwitch/145921a822e830da62d39e36e8aafb8ef22c7be6/firefox/icons/twitch-adblock-48x48.png -------------------------------------------------------------------------------- /firefox/icons/twitch-adblock-96x96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muleyo/VideoAdBlockForTwitch/145921a822e830da62d39e36e8aafb8ef22c7be6/firefox/icons/twitch-adblock-96x96.png -------------------------------------------------------------------------------- /firefox/manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "description": "Blocks Ads on Twitch.tv.", 3 | "manifest_version": 2, 4 | "name": "Twitch Adblock", 5 | "version": "5.6.0", 6 | "icons": { 7 | "48": "icons/twitch-adblock-48x48.png", 8 | "96": "icons/twitch-adblock-96x96.png" 9 | }, 10 | "browser_action": { 11 | "default_icon": "icons/twitch-adblock-32x32.png", 12 | "default_title": "Twitch Adblock", 13 | "default_popup": "popup/index.html" 14 | }, 15 | "options_ui": { 16 | "page": "popup/index.html", 17 | "browser_style": false, 18 | "chrome_style": false 19 | }, 20 | "permissions": [ 21 | "webRequest", 22 | "webRequestBlocking", 23 | "storage", 24 | "https://*.twitch.tv/*", 25 | "https://*.amazon-adsystem.com/*", "https://cdn.krxd.net/*", "https://script.ioam.de/iam.js", "https://edge.quantserve.com/quant.js", "https://ddacn6pr5v0tl.cloudfront.net/custom-moat-video-native.min.js", "https://d2v02itv0y9u9t.cloudfront.net/dist/1.0.5/v6s.js", "https://*.imrworldwide.com/*", "https://countess.twitch.tv/*", "https://*.scorecardresearch.com/*", "https://www.googletagservices.com/tag/js/gpt.js", "*://*.branch.io/*", "*://comscore.com/*" 26 | ], 27 | "browser_specific_settings": { 28 | "gecko": { 29 | "id": "{c961a5ba-dc89-44e9-9e52-93318dd95378}", 30 | "strict_min_version": "57.0" 31 | } 32 | }, 33 | "background": { 34 | "scripts": ["background.js"] 35 | }, 36 | "content_scripts": [{ 37 | "matches": ["https://*.twitch.tv/*"], 38 | "run_at": "document_start", 39 | "js": ["content.js"] 40 | }] 41 | } -------------------------------------------------------------------------------- /firefox/popup/discord.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muleyo/VideoAdBlockForTwitch/145921a822e830da62d39e36e8aafb8ef22c7be6/firefox/popup/discord.png -------------------------------------------------------------------------------- /firefox/popup/github.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muleyo/VideoAdBlockForTwitch/145921a822e830da62d39e36e8aafb8ef22c7be6/firefox/popup/github.png -------------------------------------------------------------------------------- /firefox/popup/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Twitch Adblock 6 | 101 | 102 | 103 | 157 | 158 | 159 | 160 | -------------------------------------------------------------------------------- /firefox/popup/install.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Twitch Adblock 6 | 100 | 101 | 102 | 158 | 159 | 160 | 161 | -------------------------------------------------------------------------------- /firefox/popup/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muleyo/VideoAdBlockForTwitch/145921a822e830da62d39e36e8aafb8ef22c7be6/firefox/popup/logo.png -------------------------------------------------------------------------------- /firefox/popup/popupjs.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | const isChromium = typeof window.chrome !== 'undefined'; 4 | const isFirefox = typeof window.browser !== 'undefined'; 5 | const browser = isFirefox ? window.browser : window.chrome; 6 | 7 | var onOff = document.querySelector('input[name=checkbox_ad]'); 8 | var blockingMessage = document.querySelector('input[name=checkbox_ad_msg]'); 9 | var forcedQuality = document.querySelector('select[name=dropdown_forced_quality]'); 10 | var proxy = document.querySelector('select[name=dropdown_proxy]'); 11 | var proxyQuality = document.querySelector('select[name=dropdown_proxy_quality]'); 12 | 13 | var allSettingsElements = [onOff,blockingMessage,forcedQuality,proxy,proxyQuality]; 14 | 15 | for (var i = 0; i < allSettingsElements.length; i++) { 16 | if (allSettingsElements[i]) { 17 | allSettingsElements[i].addEventListener('change', function() { 18 | saveOptions(); 19 | }); 20 | } 21 | } 22 | 23 | function saveOptions() { 24 | chrome.storage.local.set({onOffTTV: onOff.checked ? 'true' : 'false'}); 25 | chrome.storage.local.set({blockingMessageTTV: blockingMessage.checked ? 'true' : 'false'}); 26 | //chrome.storage.local.set({forcedQualityTTV: forcedQuality.options[forcedQuality.selectedIndex].text}); 27 | chrome.storage.local.set({proxyTTV: proxy.options[proxy.selectedIndex].text}); 28 | chrome.storage.local.set({proxyQualityTTV: proxyQuality.options[proxyQuality.selectedIndex].text}); 29 | } 30 | 31 | function restoreOptions() { 32 | restoreToggle('onOffTTV', onOff); 33 | restoreToggle('blockingMessageTTV', blockingMessage); 34 | //restoreDropdown('forcedQualityTTV', forcedQuality); 35 | restoreDropdown('proxyTTV', proxy); 36 | restoreDropdown('proxyQualityTTV', proxyQuality); 37 | } 38 | 39 | function restoreToggle(name, toggle) { 40 | chrome.storage.local.get([name], function(result) { 41 | if (result[name]) { 42 | toggle.checked = result[name] == 'true'; 43 | } 44 | }); 45 | } 46 | 47 | function restoreDropdown(name, dropdown) { 48 | chrome.storage.local.get([name], function(result) { 49 | if (result[name]) { 50 | var items = Array.from(dropdown.options).filter(item => item.text == result[name]); 51 | if (items.length == 1) { 52 | dropdown.selectedIndex = items[0].index; 53 | } 54 | } 55 | }); 56 | } 57 | 58 | document.addEventListener('DOMContentLoaded', restoreOptions); --------------------------------------------------------------------------------