Kutt
Shorten long URLs with just one click.
O que é Kutt?
Kutt é uma extensão do Chrome desenvolvida por thedevs.network, e sua principal característica é "Shorten long URLs with just one click.".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Kutt
Baixe arquivos de extensão Kutt 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
Kutt is a modern URL shortener with support for custom domains. Shorten URLs, manage your links and view the click rate statistics. Some Features: - Free and open source. - Custom domain support. - Custom URLs for shortened links - Setting password for links. - Private statistics for shortened URLs. - View and manage your links. - RESTful API.
Informações Básicas da Extensão
Nome | Kutt |
ID | pklakpjfiegjacoppcodencchehlfnpd |
URL Oficial | https://chromewebstore.google.com/detail/kutt/pklakpjfiegjacoppcodencchehlfnpd |
Descrição | Shorten long URLs with just one click. |
Tamanho do Arquivo | 292 KB |
Contagem de Instalações | 1,644 |
Versão Atual | 4.3.1 |
Última Atualização | 2022-12-20 |
Data de Publicação | 2019-12-14 |
Classificação | 4.45/5 Total de 22 Avaliações |
Desenvolvedor | thedevs.network |
[email protected] | |
Tipo de Pagamento | free |
Site da Extensão | https://kutt.it |
URL da Página de Ajuda | https://github.com/thedevs-network/kutt-extension |
Idiomas Suportados | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Kutt", "version": "4.3.1", "short_name": "Kutt", "description": "Shorten long URLs with just one click.", "icons": { "16": "assets\/favicon-16.png", "32": "assets\/favicon-32.png", "48": "assets\/favicon-48.png", "128": "assets\/favicon-128.png" }, "homepage_url": "https:\/\/github.com\/thedevs-network\/kutt-extension.git", "author": "abhijithvijayan", "browser_action": { "default_popup": "popup.html", "default_icon": { "16": "assets\/favicon-16.png", "32": "assets\/favicon-32.png", "48": "assets\/favicon-48.png", "128": "assets\/favicon-128.png" }, "default_title": "Shorten this URL", "chrome_style": false }, "background": { "persistent": false, "scripts": [ "js\/background.bundle.js" ] }, "minimum_chrome_version": "49", "permissions": [ "activeTab", "storage", "http:\/\/*\/*", "https:\/\/*\/*" ], "content_security_policy": "script-src 'self'; object-src 'self'", "options_page": "options.html", "options_ui": { "page": "options.html", "open_in_tab": true, "chrome_style": false } } |