Gifnope
This extension allows you to stop annoying gifs in the current page
Gifnope क्या है?
Gifnope Claudio Cicali द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "This extension allows you to stop annoying gifs in the current page"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Gifnope एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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" ] } } |