Meme Generator

Create a meme from an image on a page

Co to jest Meme Generator?

Meme Generator to rozszerzenie Chrome opracowane przez VDubs, a jego główną funkcją jest „Create a meme from an image on a page”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot
screenshot

Pobierz plik CRX rozszerzenia Meme Generator

Pobierz pliki rozszerzeń Meme Generator w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa Meme Generator Meme Generator
ID bkfbjlljbnbhhmlfiegbamebionjpfok
Oficjalny URL https://chromewebstore.google.com/detail/meme-generator/bkfbjlljbnbhhmlfiegbamebionjpfok
Opis Create a meme from an image on a page
Rozmiar pliku 29.39 KB
Liczba instalacji 268
Aktualna Wersja 0.3.1
Ostatnia Aktualizacja 2020-03-17
Data Publikacji 2020-03-17
Deweloper VDubs
Typ Płatności free
Strona Rozszerzenia https://github.com/DutchRican/meme_gen
Adres URL Strony Pomocy https://github.com/DutchRican/meme_gen
Obsługiwane Języki 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
    }
}