Flying Meme Animator

This is chrome extension for exposing funny GIFs.

Что такое Flying Meme Animator?

Flying Meme Animator - это расширение Chrome, разработанное chancethecoder, и его основная функция - "This is chrome extension for exposing funny GIFs.".

Снимки экрана расширения

screenshot
screenshot
screenshot
screenshot

Скачать файл CRX расширения Flying Meme Animator

Скачайте файлы расширений Flying Meme Animator в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

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

Features:
- change current GIF
- on/off toggle                    

Основная информация о расширении

Название Flying Meme Animator Flying Meme Animator
ID flmnecgbkcpalbenlbdfljhepngbdhdp
Официальный URL https://chromewebstore.google.com/detail/flying-meme-animator/flmnecgbkcpalbenlbdfljhepngbdhdp
Описание This is chrome extension for exposing funny GIFs.
Размер файла 126 KB
Количество установок 85
Текущая Версия 1.0.0
Последнее Обновление 2021-11-02
Дата публикации 2021-11-01
Разработчик chancethecoder
Электронная почта [email protected]
Тип оплаты free
Поддерживаемые языки 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"
    ]
}