Slack Sticker

Stickers for Slack Web App - Spice up your slack

什麼是Slack Sticker?

Slack Sticker是由Khoi-Phong Le開發的Chrome擴展程式,該擴展的主要功能是“Stickers for Slack Web App - Spice up your slack”。

擴展截圖

screenshot

下載Slack Sticker擴展crx文件

下載Slack Sticker擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        Add your imgur.com sticker album then use it at chat conversation

#1.0.1
- Post as attachment to ensure unfurling
#1.0.2
- Fix minor issues                    

擴展基本資訊

名稱 Slack Sticker Slack Sticker
ID djibdabhbdjgfipekjefbhijjjeagela
官方網址 https://chromewebstore.google.com/detail/slack-sticker/djibdabhbdjgfipekjefbhijjjeagela
簡介 Stickers for Slack Web App - Spice up your slack
檔案大小 250 KB
安裝次數 104
目前版本 1.0.2
更新時間 2017-12-04
上架時間 2017-12-03
評分 5.00/5 共 2 次評分
開發者 Khoi-Phong Le
電子郵箱 [email protected]
付費類型 free
隱私政策頁面URL https://github.com/voz-living/chrome-extension-react/wiki/Privacy-Policy
支援的語言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Slack Sticker",
    "version": "1.0.2",
    "manifest_version": 2,
    "description": "Stickers for Slack Web App - Spice up your slack",
    "homepage_url": "https:\/\/github.com\/phonglk\/slack-sticker",
    "icons": {
        "16": "assert\/16.png",
        "32": "assert\/32.png",
        "64": "assert\/64.png",
        "128": "assert\/128.png",
        "256": "assert\/256.png"
    },
    "background": {
        "page": "background.html"
    },
    "options_ui": {
        "page": "options.html",
        "chrome_style": true
    },
    "browser_action": {
        "default_icon": {
            "19": "assert\/19.png",
            "38": "assert\/38.png"
        },
        "default_title": "Manage Stickers",
        "default_popup": "popup.html"
    },
    "permissions": [
        "storage",
        "http:\/\/*.slack.com\/*",
        "https:\/\/*.slack.com\/*"
    ],
    "content_scripts": [
        {
            "all_frames": false,
            "js": [
                "common.dll.js",
                "content.js"
            ],
            "css": [
                "content-style.css"
            ],
            "matches": [
                "http:\/\/*.slack.com\/*",
                "https:\/\/*.slack.com\/*"
            ],
            "run_at": "document_start"
        }
    ],
    "web_accessible_resources": [
        "assert\/*"
    ]
}