Slacky - Memes as a Service
Create all the memes directly from your browser
Co to jest Slacky - Memes as a Service?
Slacky - Memes as a Service to rozszerzenie Chrome opracowane przez https://slacky-server.herokuapp.com, a jego główną funkcją jest „Create all the memes directly from your browser”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Slacky - Memes as a Service
Pobierz pliki rozszerzeń Slacky - Memes as a Service 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
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
Podstawowe informacje o rozszerzeniu
Nazwa | |
ID | nikjbdhcbfledkekdacecmegploaelpe |
Oficjalny URL | https://chrome.google.com/webstore/detail/slacky-memes-as-a-service/nikjbdhcbfledkekdacecmegploaelpe |
Opis | Create all the memes directly from your browser |
Rozmiar pliku | 210 KB |
Liczba instalacji | 108 |
Aktualna Wersja | 0.1.1 |
Ostatnia Aktualizacja | 2015-12-03 |
Data Publikacji | 2015-12-03 |
Ocena | 5.00/5 Łącznie 1 Oceny |
Deweloper | https://slacky-server.herokuapp.com |
Typ Płatności | free |
Strona Rozszerzenia | https://slacky-server.herokuapp.com |
Adres URL Strony Pomocy | https://slacky-server.herokuapp.com |
Obsługiwane Języki | 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" ] } |