Kutt

Shorten long URLs with just one click.

Kutt là gì?

Kutt là một tiện ích mở rộng Chrome được phát triển bởi thedevs.network, và tính năng chính của nó là "Shorten long URLs with just one click.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Kutt

Tải xuống các tệp mở rộng Kutt 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

                        Kutt is a modern URL shortener with support for custom domains. Shorten URLs, manage your links and view the click rate statistics.

Some Features:
- Free and open source.
- Custom domain support.
- Custom URLs for shortened links
- Setting password for links.
- Private statistics for shortened URLs.
- View and manage your links.
- RESTful API.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Kutt Kutt
ID pklakpjfiegjacoppcodencchehlfnpd
URL Chính Thức https://chromewebstore.google.com/detail/kutt/pklakpjfiegjacoppcodencchehlfnpd
Mô tả Shorten long URLs with just one click.
Kích Thước Tệp 292 KB
Số Lần Cài Đặt 1,644
Phiên Bản Hiện Tại 4.3.1
Cập Nhật Lần Cuối 2022-12-20
Ngày Phát Hành 2019-12-14
Đánh Giá 4.45/5 Tổng số 22 Đánh Giá
Nhà Phát Triển thedevs.network
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://kutt.it
URL Trang Trợ Giúp https://github.com/thedevs-network/kutt-extension
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Kutt",
    "version": "4.3.1",
    "short_name": "Kutt",
    "description": "Shorten long URLs with just one click.",
    "icons": {
        "16": "assets\/favicon-16.png",
        "32": "assets\/favicon-32.png",
        "48": "assets\/favicon-48.png",
        "128": "assets\/favicon-128.png"
    },
    "homepage_url": "https:\/\/github.com\/thedevs-network\/kutt-extension.git",
    "author": "abhijithvijayan",
    "browser_action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "assets\/favicon-16.png",
            "32": "assets\/favicon-32.png",
            "48": "assets\/favicon-48.png",
            "128": "assets\/favicon-128.png"
        },
        "default_title": "Shorten this URL",
        "chrome_style": false
    },
    "background": {
        "persistent": false,
        "scripts": [
            "js\/background.bundle.js"
        ]
    },
    "minimum_chrome_version": "49",
    "permissions": [
        "activeTab",
        "storage",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "content_security_policy": "script-src 'self'; object-src 'self'",
    "options_page": "options.html",
    "options_ui": {
        "page": "options.html",
        "open_in_tab": true,
        "chrome_style": false
    }
}