Cut it - URL Shortener
Shorten your URL's from anywhere.
Cos'è Cut it - URL Shortener?
Cut it - URL Shortener è un'estensione di Chrome sviluppata da https://cut.it.nf, e la sua funzione principale è "Shorten your URL's from anywhere.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Cut it - URL Shortener
Scarica i file di estensione Cut it - URL Shortener in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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
Informazioni di Base sull'Estensione
Nome | Cut it - URL Shortener |
ID | oobhmofbjccdinehjdhconeombgnfhkj |
URL Ufficiale | https://chromewebstore.google.com/detail/cut-it-url-shortener/oobhmofbjccdinehjdhconeombgnfhkj |
Descrizione | Shorten your URL's from anywhere. |
Dimensione del File | 63.59 KB |
Conteggio Installazioni | 62 |
Versione Corrente | 1.4 |
Ultimo Aggiornamento | 2022-06-01 |
Data di Pubblicazione | 2022-02-16 |
Sviluppatore | https://cut.it.nf |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://cut.it.nf |
URL della Pagina di Aiuto | https://cut.it.nf/contact |
Lingue Supportate | 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" } ] } |