Slacky - Memes as a Service
Create all the memes directly from your browser
什么是Slacky - Memes as a Service?
Slacky - Memes as a Service是由https://slacky-server.herokuapp.com开发的Chrome扩展程序,该扩展的主要功能是“Create all the memes directly from your browser”。
扩展截图
下载Slacky - Memes as a Service扩展crx文件
下载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"
]
} | |