Slacky - Memes as a Service

Create all the memes directly from your browser

Was ist Slacky - Memes as a Service?

Slacky - Memes as a Service ist eine Chrome-Erweiterung, die von https://slacky-server.herokuapp.com entwickelt wurde, und ihr Hauptmerkmal ist "Create all the memes directly from your browser".

Erweiterungsscreenshots

screenshot

Slacky - Memes as a Service-Erweiterungs-CRX-Datei herunterladen

Laden Sie Slacky - Memes as a Service-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        Tired of creating memes by visiting websites, uploading images and copying links? Slacky provides a simple way to create memes directly in your browser!

Simply provide a search term or image url and the text in the following way:

cute kitten | omg | kittens!
http://images.com/doge.jpg | so meme | very happiness

This is brand new so I'd be grateful for constructive feedback. See more examples on the website https://slacky-server.herokuapp.com

Release notes
-------------
v0.1.1
A more stable and robust approach which should make the display consistent across tabs and websites                    

Grundlegende Informationen zur Erweiterung

Name Slacky - Memes as a Service Slacky - Memes as a Service
ID nikjbdhcbfledkekdacecmegploaelpe
Offizielle URL https://chrome.google.com/webstore/detail/slacky-memes-as-a-service/nikjbdhcbfledkekdacecmegploaelpe
Beschreibung Create all the memes directly from your browser
Dateigröße 210 KB
Installationsanzahl 108
Aktuelle Version 0.1.1
Letztes Update 2015-12-03
Veröffentlichungsdatum 2015-12-03
Bewertung 5.00/5 Insgesamt 1 Bewertungen
Entwickler https://slacky-server.herokuapp.com
Zahlungsart free
Erweiterungswebsite https://slacky-server.herokuapp.com
Hilfeseite URL https://slacky-server.herokuapp.com
Unterstützte Sprachen en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Slacky - Memes as a Service",
    "description": "Create all the memes directly from your browser",
    "version": "0.1.1",
    "icons": {
        "16": "slacky-16.png",
        "32": "slacky-32.png",
        "64": "slacky-64.png",
        "128": "slacky-128.png"
    },
    "browser_action": {
        "default_icon": "slacky-64.png",
        "default_popup": "panel.html"
    },
    "background": {
        "scripts": [
            "jquery.js",
            "utils.js",
            "index.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*",
                "file:\/\/*\/*"
            ],
            "js": [
                "jquery.js",
                "utils.js",
                "window.js"
            ]
        }
    ],
    "permissions": [
        "activeTab",
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        "storage",
        "clipboardWrite"
    ],
    "web_accessible_resources": [
        "businesscat.png",
        "loading.gif"
    ]
}