Flying Meme Animator
This is chrome extension for exposing funny GIFs.
What is Flying Meme Animator?
Flying Meme Animator is a Chrome extension developed by chancethecoder, and its main feature is "This is chrome extension for exposing funny GIFs.".
Extension Screenshots
Download Flying Meme Animator Extension CRX File
Download Flying Meme Animator extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
This is chrome extension for exposing funny GIFs on typing/click event on your browser. Features: - change current GIF - on/off toggle
Extension Basic Information
Name | Flying Meme Animator |
ID | flmnecgbkcpalbenlbdfljhepngbdhdp |
Official URL | https://chromewebstore.google.com/detail/flying-meme-animator/flmnecgbkcpalbenlbdfljhepngbdhdp |
Description | This is chrome extension for exposing funny GIFs. |
File Size | 126 KB |
Installation Count | 85 |
Current Version | 1.0.0 |
Last Updated | 2021-11-02 |
Publish Date | 2021-11-01 |
Developer | chancethecoder |
[email protected] | |
Payment Type | free |
Supported Languages | 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" ] } |