Cut it - URL Shortener
Shorten your URL's from anywhere.
O que é Cut it - URL Shortener?
Cut it - URL Shortener é uma extensão do Chrome desenvolvida por https://cut.it.nf, e sua principal característica é "Shorten your URL's from anywhere.".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Cut it - URL Shortener
Baixe arquivos de extensão Cut it - URL Shortener 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
Create short links from any page and share them with the world. In this extension you can shorten any link by 2 options 1. The user can click on the icon of this extension in your "Addons" above 2. The user can shorten the link from Context Menu (Right Click Menu), just go over a link,video,image etc, click on the right click button and click "Shorten URL with Cut.it" wait a second and the Short URL will be copied automatically
Informações Básicas da Extensão
Nome | Cut it - URL Shortener |
ID | oobhmofbjccdinehjdhconeombgnfhkj |
URL Oficial | https://chromewebstore.google.com/detail/cut-it-url-shortener/oobhmofbjccdinehjdhconeombgnfhkj |
Descrição | Shorten your URL's from anywhere. |
Tamanho do Arquivo | 63.59 KB |
Contagem de Instalações | 62 |
Versão Atual | 1.4 |
Última Atualização | 2022-06-01 |
Data de Publicação | 2022-02-16 |
Desenvolvedor | https://cut.it.nf |
[email protected] | |
Tipo de Pagamento | free |
Site da Extensão | https://cut.it.nf |
URL da Página de Ajuda | https://cut.it.nf/contact |
Idiomas Suportados | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Cut it - URL Shortener", "description": "Shorten your URL's from anywhere.", "version": "1.4", "icons": { "16": "icon.png", "48": "icon.png", "128": "icon.png" }, "action": { "default_icon": "icon.png", "default_popup": "views\/popup.html" }, "background": { "service_worker": "background.js" }, "permissions": [ "contextMenus" ], "host_permissions": [ "*:\/\/*\/*" ], "options_page": "views\/options.html", "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "js": [ "js\/content.js" ], "css": [ "css\/content.css" ], "run_at": "document_end" } ] } |