Slacky - Memes as a Service
Create all the memes directly from your browser
¿Qué es Slacky - Memes as a Service?
Slacky - Memes as a Service es una extensión de Chrome desarrollada por https://slacky-server.herokuapp.com, y su función principal es "Create all the memes directly from your browser".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión Slacky - Memes as a Service
Descarga archivos de extensión Slacky - Memes as a Service en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.
Instrucciones de Uso de la Extensión
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
Información Básica de la Extensión
Nombre | |
ID | nikjbdhcbfledkekdacecmegploaelpe |
URL Oficial | https://chrome.google.com/webstore/detail/slacky-memes-as-a-service/nikjbdhcbfledkekdacecmegploaelpe |
Descripción | Create all the memes directly from your browser |
Tamaño del Archivo | 210 KB |
Cantidad de Instalaciones | 108 |
Versión Actual | 0.1.1 |
Última Actualización | 2015-12-03 |
Fecha de Publicación | 2015-12-03 |
Calificación | 5.00/5 Total de 1 Calificaciones |
Desarrollador | https://slacky-server.herokuapp.com |
Tipo de Pago | free |
Sitio Web de la Extensión | https://slacky-server.herokuapp.com |
URL de la Página de Ayuda | https://slacky-server.herokuapp.com |
Idiomas Soportados | 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" ] } |