Shorty
URL Shortener
Shortyคืออะไร?
Shorty เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://r3bl.com และคุณลักษณะหลักของมันคือ "URL Shortener"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Shorty
ดาวน์โหลดไฟล์ส่วนขยาย Shorty ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Shortens the current URL (using tinyurl.com) and copies it to the clipboard. Ctrl+Shift+P keyboard shortcut activates it.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Shorty |
ID | cbgcnhimnlnjejdopldfdicfingmaijg |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/shorty/cbgcnhimnlnjejdopldfdicfingmaijg |
คำอธิบาย | URL Shortener |
ขนาดไฟล์ | 120 KB |
จำนวนการติดตั้ง | 50 |
เวอร์ชันปัจจุบัน | 2.1 |
อัปเดตครั้งล่าสุด | 2023-03-11 |
วันที่เผยแพร่ | 2020-05-31 |
คะแนน | 5.00/5 รวมทั้งหมด 5 คะแนน |
ผู้พัฒนา | https://r3bl.com |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | http://r3bl.com |
URL หน้าช่วยเหลือ | https://github.com/r3bl-org/shorty/issues |
ภาษาที่รองรับ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Shorty", "description": "URL Shortener", "version": "2.1", "icons": { "16": "icon16.png", "32": "icon32.png", "48": "icon48.png", "128": "icon128.png" }, "action": { "default_title": "Click to shorten URL", "default_popup": "index.html", "default_icon": { "16": "icon16.png", "32": "icon32.png", "48": "icon48.png", "128": "icon128.png" } }, "commands": { "_execute_browser_action": { "suggested_key": { "default": "Ctrl+Shift+P", "mac": "MacCtrl+Shift+P" }, "description": "Shortens URL in address bar" } }, "permissions": [ "clipboardWrite", "activeTab" ], "host_permissions": [ "*:\/\/*.tinyurl.com\/*" ] } |