Meme Generator

Create a meme from an image on a page

Что такое Meme Generator?

Meme Generator - это расширение Chrome, разработанное VDubs, и его основная функция - "Create a meme from an image on a page".

Снимки экрана расширения

screenshot
screenshot
screenshot

Скачать файл CRX расширения Meme Generator

Скачайте файлы расширений Meme Generator в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        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.                    

Основная информация о расширении

Название Meme Generator Meme Generator
ID bkfbjlljbnbhhmlfiegbamebionjpfok
Официальный URL https://chromewebstore.google.com/detail/meme-generator/bkfbjlljbnbhhmlfiegbamebionjpfok
Описание Create a meme from an image on a page
Размер файла 29.39 KB
Количество установок 268
Текущая Версия 0.3.1
Последнее Обновление 2020-03-17
Дата публикации 2020-03-17
Разработчик VDubs
Тип оплаты free
Официальный сайт расширения https://github.com/DutchRican/meme_gen
URL страницы помощи https://github.com/DutchRican/meme_gen
Поддерживаемые языки 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
    }
}