Gifnope
This extension allows you to stop annoying gifs in the current page
Что такое Gifnope?
Gifnope - это расширение Chrome, разработанное Claudio Cicali, и его основная функция - "This extension allows you to stop annoying gifs in the current page".
Снимки экрана расширения
Скачать файл CRX расширения Gifnope
Скачайте файлы расширений Gifnope в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
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
Основная информация о расширении
Название | Gifnope |
ID | pdfehigndohfngfifgopmikehakdhakm |
Официальный URL | https://chromewebstore.google.com/detail/gifnope/pdfehigndohfngfifgopmikehakdhakm |
Описание | This extension allows you to stop annoying gifs in the current page |
Размер файла | 20.25 KB |
Количество установок | 426 |
Текущая Версия | 1.0 |
Последнее Обновление | 2015-04-26 |
Дата публикации | 2015-04-26 |
Рейтинг | 2.68/5 Всего 28 оценок |
Разработчик | Claudio Cicali |
Электронная почта | [email protected] |
Тип оплаты | free |
Официальный сайт расширения | https://github.com/claudioc/gifnope |
Поддерживаемые языки | 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" ] } } |