Meme Generator
Create a meme from an image on a page
What is Meme Generator?
Meme Generator is a Chrome extension developed by VDubs, and its main feature is "Create a meme from an image on a page".
Extension Screenshots
Download Meme Generator Extension CRX File
Download Meme Generator 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 allows you to create a meme on the fly from the page you are on. Only JPG, PNG, GIF, BMP, TIFF and APNG are looked at if the height is greater than 150px. Settings can now be saved and are loaded automatically.
Extension Basic Information
Name | Meme Generator |
ID | bkfbjlljbnbhhmlfiegbamebionjpfok |
Official URL | https://chromewebstore.google.com/detail/meme-generator/bkfbjlljbnbhhmlfiegbamebionjpfok |
Description | Create a meme from an image on a page |
File Size | 29.39 KB |
Installation Count | 268 |
Current Version | 0.3.1 |
Last Updated | 2020-03-17 |
Publish Date | 2020-03-17 |
Developer | VDubs |
Payment Type | free |
Extension Website | https://github.com/DutchRican/meme_gen |
Help Page URL | https://github.com/DutchRican/meme_gen |
Supported Languages | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Meme Generator", "short_name": "Meme Generator", "version": "0.3.1", "description": "Create a meme from an image on a page", "manifest_version": 2, "permissions": [ "activeTab", "storage" ], "icons": { "16": ".\/icons\/icon16.png", "32": ".\/icons\/icon32.png", "48": ".\/icons\/icon48.png", "128": ".\/icons\/icon128.png" }, "background": { "scripts": [ "index.js" ], "persistent": false }, "browser_action": { "default_popup": "index.html" }, "options_ui": { "page": "options.html", "open_in_tab": false } } |