Kutt
Shorten long URLs with just one click.
Kuttคืออะไร?
Kutt เป็นส่วนขยายของ Chrome ที่พัฒนาโดย thedevs.network และคุณลักษณะหลักของมันคือ "Shorten long URLs with just one click."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Kutt
ดาวน์โหลดไฟล์ส่วนขยาย 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 |
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 |
อีเมล | [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 } } |