Cut it - URL Shortener
Shorten your URL's from anywhere.
What is Cut it - URL Shortener?
Cut it - URL Shortener is a Chrome extension developed by https://cut.it.nf, and its main feature is "Shorten your URL's from anywhere.".
Extension Screenshots
Download Cut it - URL Shortener Extension CRX File
Download Cut it - URL Shortener extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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
Extension Basic Information
Name | Cut it - URL Shortener |
ID | oobhmofbjccdinehjdhconeombgnfhkj |
Official URL | https://chromewebstore.google.com/detail/cut-it-url-shortener/oobhmofbjccdinehjdhconeombgnfhkj |
Description | Shorten your URL's from anywhere. |
File Size | 63.59 KB |
Installation Count | 62 |
Current Version | 1.4 |
Last Updated | 2022-06-01 |
Publish Date | 2022-02-16 |
Developer | https://cut.it.nf |
[email protected] | |
Payment Type | free |
Extension Website | https://cut.it.nf |
Help Page URL | https://cut.it.nf/contact |
Supported Languages | 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" } ] } |