Gifnope
This extension allows you to stop annoying gifs in the current page
Gifnope là gì?
Gifnope là một tiện ích mở rộng Chrome được phát triển bởi Claudio Cicali, và tính năng chính của nó là "This extension allows you to stop annoying gifs in the current page".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Gifnope
Tải xuống các tệp mở rộng Gifnope dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Gifnope |
ID | pdfehigndohfngfifgopmikehakdhakm |
URL Chính Thức | https://chromewebstore.google.com/detail/gifnope/pdfehigndohfngfifgopmikehakdhakm |
Mô tả | This extension allows you to stop annoying gifs in the current page |
Kích Thước Tệp | 20.25 KB |
Số Lần Cài Đặt | 426 |
Phiên Bản Hiện Tại | 1.0 |
Cập Nhật Lần Cuối | 2015-04-26 |
Ngày Phát Hành | 2015-04-26 |
Đánh Giá | 2.68/5 Tổng số 28 Đánh Giá |
Nhà Phát Triển | Claudio Cicali |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/claudioc/gifnope |
Ngôn Ngữ Được Hỗ Trợ | 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" ] } } |