TinyURL
A one-click tool to generate a tiny URL (https://tinyurl.com) from your current URL and automatically copy it to the clipboard.
TinyURLคืออะไร?
TinyURL เป็นส่วนขยายของ Chrome ที่พัฒนาโดย ByteCrafter และคุณลักษณะหลักของมันคือ "A one-click tool to generate a tiny URL (https://tinyurl.com) from your current URL and automatically copy it to the clipboard."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย TinyURL
ดาวน์โหลดไฟล์ส่วนขยาย TinyURL ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
This extension uses https://tinyurl.com to create a tiny URL from today's ridiculously enormous URLs that frequently fail when launching from email clients and other URI enabled software. With one click, the URL from your active tab will be sent to https://tinyurl.com, returning the tiny URL directly in to your clipboard, ready for pasting. There is no extra clicking, and (optionally) no notifications. As soon as you click the icon, you can paste the tiny URL where you want it.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | TinyURL |
ID | jbnhjginpjihefndhjlhlggblfbefpod |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/tinyurl/jbnhjginpjihefndhjlhlggblfbefpod |
คำอธิบาย | A one-click tool to generate a tiny URL (https://tinyurl.com) from your current URL and automatically copy it to the clipboard. |
ขนาดไฟล์ | 12.51 KB |
จำนวนการติดตั้ง | 2,242 |
เวอร์ชันปัจจุบัน | 2019.9.27.22 |
อัปเดตครั้งล่าสุด | 2019-09-30 |
วันที่เผยแพร่ | 2019-09-28 |
คะแนน | 3.67/5 รวมทั้งหมด 3 คะแนน |
ผู้พัฒนา | ByteCrafter |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
ภาษาที่รองรับ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "TinyURL", "short_name": "TinyURL", "version": "2019.9.27.22", "author": "Robert A Moreno II", "description": "A one-click tool to generate a tiny URL (https:\/\/tinyurl.com) from your current URL and automatically copy it to the clipboard.", "permissions": [ "https:\/\/tinyurl.com\/", "activeTab", "tabs", "clipboardWrite", "storage", "contextMenus" ], "icons": { "16": "images\/tinyurl_16.png", "32": "images\/tinyurl_32.png", "48": "images\/tinyurl_48.png", "64": "images\/tinyurl_64.png", "128": "images\/tinyurl_128.png" }, "background": { "scripts": [ "background.js" ], "persistent": false }, "browser_action": { "default_title": "Create a TinyURL" }, "options_ui": { "page": "options.html", "open_in_tab": false }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "css": [ "content.css" ], "js": [ "content.js" ] } ] } |