Kutt
Shorten long URLs with just one click.
什麼是Kutt?
Kutt是由thedevs.network開發的Chrome擴展程式,該擴展的主要功能是“Shorten long URLs with just one click.”。
擴展截圖
下載Kutt擴展crx文件
下載Kutt擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
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.
擴展基本資訊
名稱 | Kutt |
ID | pklakpjfiegjacoppcodencchehlfnpd |
官方網址 | https://chromewebstore.google.com/detail/kutt/pklakpjfiegjacoppcodencchehlfnpd |
簡介 | Shorten long URLs with just one click. |
檔案大小 | 292 KB |
安裝次數 | 1,644 |
目前版本 | 4.3.1 |
更新時間 | 2022-12-20 |
上架時間 | 2019-12-14 |
評分 | 4.45/5 共 22 次評分 |
開發者 | thedevs.network |
電子郵箱 | [email protected] |
付費類型 | free |
擴展官網 | https://kutt.it |
說明頁面URL | https://github.com/thedevs-network/kutt-extension |
支援的語言 | 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 } } |