gif-ify

Replaces the images on the page with random gifs

Vad är gif-ify?

gif-ify är en Chrome-tillägg utvecklad av Unknown, och dess huvudfunktion är "Replaces the images on the page with random gifs".

Ladda ner gif-ify-förlängningens CRX-fil

Ladda ner gif-ify-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                                            

Grundläggande Information om Tillägg

Namn gif-ify gif-ify
ID lhakkbopgkacpnfidngodjclfkeaolnl
Officiell webbadress https://chromewebstore.google.com/detail/gif-ify/lhakkbopgkacpnfidngodjclfkeaolnl
Beskrivning Replaces the images on the page with random gifs
Filstorlek 69.74 KB
Antal Installationer 18
Aktuell Version 1.0
Senast Uppdaterad 2016-06-04
Publiceringsdatum 2016-06-04
Utvecklare Unknown
Betalningssätt free
Stödda Språk en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "gif-ify",
    "description": "Replaces the images on the page with random gifs",
    "version": "1.0",
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "browser_action": {
        "default_icon": "icon.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "jquery-2.2.4.min.js",
                "content.js"
            ]
        }
    ]
}