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 파일 다운로드

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

확장 프로그램 사용 설명서

                        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
공식 URL 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\/*"
    ]
}