Gifnope
This extension allows you to stop annoying gifs in the current page
O que é Gifnope?
Gifnope é uma extensão do Chrome desenvolvida por Claudio Cicali, e sua principal característica é "This extension allows you to stop annoying gifs in the current page".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Gifnope
Baixe arquivos de extensão Gifnope 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
Chrome extension which tries to pause the gifs that nag you. I found it useful when I am reading a document which contains some funny GIFs. By the way, authors: what about not using gifs inside a documents which is supposed to be read? To pause the GIF(s) you can use one of these options: - Use the contextual menu on a gif and select "Pause animation" - Use the contextual menu anywhere in the page except on a gif a select "Pause all animations" - Press the esc key and then click on the target GIF - Press the esc key _twice_ to pause all GIFs in the document Click on a paused gif to un-pause the animation. The extension is open source and you can get it on Github (star it, if you like it!) https://github.com/claudioc/gifnope
Informações Básicas da Extensão
Nome | Gifnope |
ID | pdfehigndohfngfifgopmikehakdhakm |
URL Oficial | https://chromewebstore.google.com/detail/gifnope/pdfehigndohfngfifgopmikehakdhakm |
Descrição | This extension allows you to stop annoying gifs in the current page |
Tamanho do Arquivo | 20.25 KB |
Contagem de Instalações | 426 |
Versão Atual | 1.0 |
Última Atualização | 2015-04-26 |
Data de Publicação | 2015-04-26 |
Classificação | 2.68/5 Total de 28 Avaliações |
Desenvolvedor | Claudio Cicali |
[email protected] | |
Tipo de Pagamento | free |
Site da Extensão | https://github.com/claudioc/gifnope |
Idiomas Suportados | en-GB |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Gifnope", "description": "This extension allows you to stop annoying gifs in the current page", "version": "1.0", "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" }, "permissions": [ "contextMenus" ], "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "js": [ "content.js" ] } ], "background": { "scripts": [ "background.js" ] } } |