Shlink

Unofficial Shlink extension

O que é Shlink?

Shlink é uma extensão do Chrome desenvolvida por Edward Shen, e sua principal característica é "Unofficial Shlink extension".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Shlink

Baixe arquivos de extensão Shlink 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

                        This unofficial extension provides a shortcut button to generate a short url using Shlink, a self-hosted link shortening service. You will need to run your own instance of Shlink for this extension to function!

After installing this extension, you'll need to go into the extension's preferences and enter your API key and the location of your Shlink instance.

Once installed and configured, click the extension and a short link will be requested from your instance for the page you're currently on. This short link will be copied to your clipboard, so you can easily paste it anywhere you'd like.                    

Informações Básicas da Extensão

Nome Shlink Shlink
ID mgdacpmionfhhogkokjbdeehfnnliajj
URL Oficial https://chromewebstore.google.com/detail/shlink/mgdacpmionfhhogkokjbdeehfnnliajj
Descrição Unofficial Shlink extension
Tamanho do Arquivo 91.86 KB
Contagem de Instalações 189
Versão Atual 0.5.1
Última Atualização 2022-11-29
Data de Publicação 2020-09-21
Desenvolvedor Edward Shen
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://github.com/edward-shen/shlink
URL da Página de Ajuda https://github.com/edward-shen/shlink/issues
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Shlink",
    "version": "0.5.1",
    "description": "Unofficial Shlink extension",
    "icons": {
        "16": "icons\/shlink-16.png",
        "48": "icons\/shlink-48.png",
        "64": "icons\/shlink-64.png",
        "96": "icons\/shlink-96.png",
        "128": "icons\/shlink-128.png",
        "256": "icons\/shlink-256.png"
    },
    "permissions": [
        "tabs",
        "notifications",
        "clipboardWrite",
        "storage"
    ],
    "options_ui": {
        "page": "options.html"
    },
    "browser_action": {
        "default_icon": {
            "16": "icons\/shlink-16.png",
            "48": "icons\/shlink-48.png",
            "64": "icons\/shlink-64.png",
            "96": "icons\/shlink-96.png",
            "128": "icons\/shlink-128.png",
            "256": "icons\/shlink-256.png"
        },
        "default_title": "Link it!"
    },
    "background": {
        "scripts": [
            "lib\/browser-polyfill.min.js",
            "background.js"
        ]
    }
}