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.".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Flying Meme Animator
قم بتنزيل ملفات الامتداد Flying Meme Animator بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
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 |
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" ] } |