Gifnope
This extension allows you to stop annoying gifs in the current page
Gifnopeとは何ですか?
GifnopeはClaudio Cicaliによって開発されたChromeの拡張機能で、その主な機能は「This extension allows you to stop annoying gifs in the current page」です。
拡張機能のスクリーンショット
Gifnope拡張機能のCRXファイルをダウンロード
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 |
Eメール | [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" ] } } |