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".

Στιγμιότυπα Επέκτασης

screenshot

Λήψη αρχείου 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 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"
        ]
    }
}