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 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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" ] } } |