URL Shortener
Shortens URLs with various services.
URL Shortenerคืออะไร?
URL Shortener เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Klaus Eckelt และคุณลักษณะหลักของมันคือ "Shortens URLs with various services."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย URL Shortener
ดาวน์โหลดไฟล์ส่วนขยาย URL Shortener ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
By clicking the extension's button the URL of the current Tab is used to create a shorter one. The short URL will be displayed and automatically copied to your clipboard. Services: ‣ anonym.to ‣ goo.gl ‣ is.gd ‣ t1p.de ‣ tinyurl.com: Permissions: ‣ Access to anonym.to, is.gd, t1p.de, tinyurl.com googleapis.com: To use the services. ‣ Read browsing history: to read the current tab's URL. ‣ Clipboard write to copy the shortened URL. ‣ Extension source code: https://bitbucket.org/keckelt/url-shorten-extension
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | URL Shortener |
ID | ecoljajakaeclkkcakoamigglloihgao |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/url-shortener/ecoljajakaeclkkcakoamigglloihgao |
คำอธิบาย | Shortens URLs with various services. |
ขนาดไฟล์ | 188 KB |
จำนวนการติดตั้ง | 1,873 |
เวอร์ชันปัจจุบัน | 2.2 |
อัปเดตครั้งล่าสุด | 2016-07-11 |
วันที่เผยแพร่ | 2016-07-11 |
คะแนน | 4.71/5 รวมทั้งหมด 17 คะแนน |
ผู้พัฒนา | Klaus Eckelt |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://bitbucket.org/keckelt/url-shorten-extension |
URL หน้าช่วยเหลือ | https://chrome.google.com/webstore/detail/url-shortener/ecoljajakaeclkkcakoamigglloihgao/support |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "URL Shortener", "description": "Shortens URLs with various services.", "version": "2.2", "author": "eckelt.info", "icons": { "16": "style\/images\/icon1\/icon-16.png", "19": "style\/images\/icon1\/icon-19.png", "32": "style\/images\/icon1\/icon-32.png", "38": "style\/images\/icon1\/icon-38.png", "48": "style\/images\/icon1\/icon-48.png", "64": "style\/images\/icon1\/icon-64.png", "128": "style\/images\/icon1\/icon-128.png", "256": "style\/images\/icon1\/icon-256.png" }, "permissions": [ "http:\/\/anonym.to\/", "https:\/\/www.googleapis.com\/urlshortener\/", "http:\/\/is.gd\/", "https:\/\/is.gd\/", "http:\/\/t1p.de\/", "http:\/\/tinyurl.com\/", "tabs", "clipboardWrite", "storage" ], "browser_action": { "default_title": "Click to shorten URL.", "default_icon": { "19": "style\/images\/icon1\/icon-19.png", "38": "style\/images\/icon1\/icon-38.png" }, "default_popup": "popup.html" }, "options_page": "options.html" } |