Gifnope
This extension allows you to stop annoying gifs in the current page
Cos'è Gifnope?
Gifnope è un'estensione di Chrome sviluppata da Claudio Cicali, e la sua funzione principale è "This extension allows you to stop annoying gifs in the current page".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Gifnope
Scarica i file di estensione Gifnope in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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
Informazioni di Base sull'Estensione
Nome | Gifnope |
ID | pdfehigndohfngfifgopmikehakdhakm |
URL Ufficiale | https://chromewebstore.google.com/detail/gifnope/pdfehigndohfngfifgopmikehakdhakm |
Descrizione | This extension allows you to stop annoying gifs in the current page |
Dimensione del File | 20.25 KB |
Conteggio Installazioni | 426 |
Versione Corrente | 1.0 |
Ultimo Aggiornamento | 2015-04-26 |
Data di Pubblicazione | 2015-04-26 |
Valutazione | 2.68/5 Totale 28 Valutazioni |
Sviluppatore | Claudio Cicali |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://github.com/claudioc/gifnope |
Lingue Supportate | 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" ] } } |