Cut it - URL Shortener
Shorten your URL's from anywhere.
Cut it - URL Shortener là gì?
Cut it - URL Shortener là một tiện ích mở rộng Chrome được phát triển bởi https://cut.it.nf, và tính năng chính của nó là "Shorten your URL's from anywhere.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Cut it - URL Shortener
Tải xuống các tệp mở rộng Cut it - URL Shortener dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Cut it - URL Shortener |
ID | oobhmofbjccdinehjdhconeombgnfhkj |
URL Chính Thức | https://chromewebstore.google.com/detail/cut-it-url-shortener/oobhmofbjccdinehjdhconeombgnfhkj |
Mô tả | Shorten your URL's from anywhere. |
Kích Thước Tệp | 63.59 KB |
Số Lần Cài Đặt | 62 |
Phiên Bản Hiện Tại | 1.4 |
Cập Nhật Lần Cuối | 2022-06-01 |
Ngày Phát Hành | 2022-02-16 |
Nhà Phát Triển | https://cut.it.nf |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://cut.it.nf |
URL Trang Trợ Giúp | https://cut.it.nf/contact |
Ngôn Ngữ Được Hỗ Trợ | 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" } ] } |