Flying Meme Animator

This is chrome extension for exposing funny GIFs.

Cos'è Flying Meme Animator?

Flying Meme Animator è un'estensione di Chrome sviluppata da chancethecoder, e la sua funzione principale è "This is chrome extension for exposing funny GIFs.".

Screenshot dell'Estensione

screenshot
screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione Flying Meme Animator

Scarica i file di estensione Flying Meme Animator in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        This is chrome extension for exposing funny GIFs on typing/click event on your browser.

Features:
- change current GIF
- on/off toggle                    

Informazioni di Base sull'Estensione

Nome Flying Meme Animator Flying Meme Animator
ID flmnecgbkcpalbenlbdfljhepngbdhdp
URL Ufficiale https://chromewebstore.google.com/detail/flying-meme-animator/flmnecgbkcpalbenlbdfljhepngbdhdp
Descrizione This is chrome extension for exposing funny GIFs.
Dimensione del File 126 KB
Conteggio Installazioni 85
Versione Corrente 1.0.0
Ultimo Aggiornamento 2021-11-02
Data di Pubblicazione 2021-11-01
Sviluppatore chancethecoder
Email [email protected]
Tipo di Pagamento free
Lingue Supportate en,ko
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "author": "Youngkyun Kim",
    "name": "__MSG_extName__",
    "description": "__MSG_extDescription__",
    "version": "1.0.0",
    "manifest_version": 2,
    "default_locale": "en",
    "browser_action": {
        "default_icon": "images\/doge-head-128.png",
        "icons": {
            "16": "images\/doge-head-16.png",
            "48": "images\/doge-head-48.png",
            "128": "images\/doge-head-128.png"
        },
        "default_popup": "popup.html"
    },
    "permissions": [
        "storage"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "contentscript.js"
            ]
        }
    ],
    "web_accessible_resources": [
        "images\/*.gif"
    ]
}