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"입니다.

확장 프로그램 스크린샷

screenshot

Slacky - Memes as a Service 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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                    

확장 프로그램 기본 정보

이름 Slacky - Memes as a Service Slacky - Memes as a Service
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"
    ]
}