Cut it - URL Shortener
Shorten your URL's from anywhere.
¿Qué es Cut it - URL Shortener?
Cut it - URL Shortener es una extensión de Chrome desarrollada por https://cut.it.nf, y su función principal es "Shorten your URL's from anywhere.".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión Cut it - URL Shortener
Descarga archivos de extensión Cut it - URL Shortener en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.
Instrucciones de Uso de la Extensión
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
Información Básica de la Extensión
Nombre | Cut it - URL Shortener |
ID | oobhmofbjccdinehjdhconeombgnfhkj |
URL Oficial | https://chromewebstore.google.com/detail/cut-it-url-shortener/oobhmofbjccdinehjdhconeombgnfhkj |
Descripción | Shorten your URL's from anywhere. |
Tamaño del Archivo | 63.59 KB |
Cantidad de Instalaciones | 62 |
Versión Actual | 1.4 |
Última Actualización | 2022-06-01 |
Fecha de Publicación | 2022-02-16 |
Desarrollador | https://cut.it.nf |
Correo electrónico | [email protected] |
Tipo de Pago | free |
Sitio Web de la Extensión | https://cut.it.nf |
URL de la Página de Ayuda | https://cut.it.nf/contact |
Idiomas Soportados | 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" } ] } |