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文件

下載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                    

擴展基本資訊

名稱 Slacky - Memes as a Service Slacky - Memes as a Service
ID nikjbdhcbfledkekdacecmegploaelpe
官方網址 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"
    ]
}