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"
    ]
}