YoutubeAutoSkip
A script to automate the skipping of YouTube ads. Using 2 methods, auto button press and Skipping to the end of a current ad.
O que é YoutubeAutoSkip?
YoutubeAutoSkip é uma extensão do Chrome desenvolvida por AshleyTyagi, e sua principal característica é "A script to automate the skipping of YouTube ads. Using 2 methods, auto button press and Skipping to the end of a current ad.".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão YoutubeAutoSkip
Baixe arquivos de extensão YoutubeAutoSkip no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
Now using manifest V3! A script to auto-click skips, the icon which is used was made by Pixel Perfect on https://www.flaticon.com/authors/pixel-perfect An extension with no user-interface which runs in the background and will effectively auto-skip ads on the site youtube.com by either shifting straight to the end of the advertisement or by either automatically pressing the skip button. Disclaimer this will not remove ads on the side of YouTube since it isn't an adblocker it simply auto-clicks skip or either it shifts your progress of watching the ad straight to the end, so you effectively skip it. Here is the link to the Github repository containing the code: https://github.com/oslohes123/YoutubeAutoSkip
Informações Básicas da Extensão
Nome | YoutubeAutoSkip |
ID | jackpdpiimmbmbcpjoabcahggiaindac |
URL Oficial | https://chromewebstore.google.com/detail/youtubeautoskip/jackpdpiimmbmbcpjoabcahggiaindac |
Descrição | A script to automate the skipping of YouTube ads. Using 2 methods, auto button press and Skipping to the end of a current ad. |
Tamanho do Arquivo | 5.86 KB |
Contagem de Instalações | 51 |
Versão Atual | 3.0 |
Última Atualização | 2022-09-26 |
Data de Publicação | 2020-06-28 |
Classificação | 5.00/5 Total de 1 Avaliações |
Desenvolvedor | AshleyTyagi |
[email protected] | |
Tipo de Pagamento | free |
Idiomas Suportados | en-GB |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "YoutubeAutoSkip", "version": "3.0", "content_scripts": [ { "matches": [ "*:\/\/*.youtube.com\/*" ], "js": [ "script.js" ] } ], "description": "A script to automate the skipping of YouTube ads. Using 2 methods, auto button press and Skipping to the end of a current ad.", "icons": { "48": "icon.ico" } } |