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. 拡張機能の基本情報
| 名前 | |
| ID | pklakpjfiegjacoppcodencchehlfnpd |
| 公式URL | 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 |
| Eメール | [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
}
} | |