Slack Sticker

Stickers for Slack Web App - Spice up your slack

O que é Slack Sticker?

Slack Sticker é uma extensão do Chrome desenvolvida por Khoi-Phong Le, e sua principal característica é "Stickers for Slack Web App - Spice up your slack".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Slack Sticker

Baixe arquivos de extensão Slack Sticker no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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                    

Informações Básicas da Extensão

Nome Slack Sticker Slack Sticker
ID djibdabhbdjgfipekjefbhijjjeagela
URL Oficial https://chromewebstore.google.com/detail/slack-sticker/djibdabhbdjgfipekjefbhijjjeagela
Descrição Stickers for Slack Web App - Spice up your slack
Tamanho do Arquivo 250 KB
Contagem de Instalações 104
Versão Atual 1.0.2
Última Atualização 2017-12-04
Data de Publicação 2017-12-03
Classificação 5.00/5 Total de 2 Avaliações
Desenvolvedor Khoi-Phong Le
Email [email protected]
Tipo de Pagamento free
URL da Página de Política de Privacidade https://github.com/voz-living/chrome-extension-react/wiki/Privacy-Policy
Idiomas Suportados 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\/*"
    ]
}