Slacky - Memes as a Service
Create all the memes directly from your browser
Что такое Slacky - Memes as a Service?
Slacky - Memes as a Service - это расширение Chrome, разработанное https://slacky-server.herokuapp.com, и его основная функция - "Create all the memes directly from your browser".
Снимки экрана расширения
Скачать файл CRX расширения Slacky - Memes as a Service
Скачайте файлы расширений Slacky - Memes as a Service в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
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
Основная информация о расширении
Название | |
ID | nikjbdhcbfledkekdacecmegploaelpe |
Официальный URL | https://chrome.google.com/webstore/detail/slacky-memes-as-a-service/nikjbdhcbfledkekdacecmegploaelpe |
Описание | Create all the memes directly from your browser |
Размер файла | 210 KB |
Количество установок | 108 |
Текущая Версия | 0.1.1 |
Последнее Обновление | 2015-12-03 |
Дата публикации | 2015-12-03 |
Рейтинг | 5.00/5 Всего 1 оценок |
Разработчик | https://slacky-server.herokuapp.com |
Тип оплаты | free |
Официальный сайт расширения | https://slacky-server.herokuapp.com |
URL страницы помощи | https://slacky-server.herokuapp.com |
Поддерживаемые языки | 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" ] } |