Flying Meme Animator

This is chrome extension for exposing funny GIFs.

Flying Meme Animatorとは何ですか?

Flying Meme Animatorはchancethecoderによって開発されたChromeの拡張機能で、その主な機能は「This is chrome extension for exposing funny GIFs.」です。

拡張機能のスクリーンショット

screenshot
screenshot
screenshot
screenshot

Flying Meme Animator拡張機能のCRXファイルをダウンロード

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
Eメール [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"
    ]
}