Url Shortener
Create and share short links using tinyurl, bit.ly, cutt.ly, is.gd, v.gd, tny.im and also generate QR code for shortened Url
什麼是Url Shortener?
Url Shortener是由https://thebyteseffect.com開發的Chrome擴展程式,該擴展的主要功能是“Create and share short links using tinyurl, bit.ly, cutt.ly, is.gd, v.gd, tny.im and also generate QR code for shortened Url”。
擴展截圖
下載Url Shortener擴展crx文件
下載Url Shortener擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
Shorten URLs with tinyurl.com, bit.ly, cutt.ly, v.gd, tny.im, is.gd, and v.gd. Get QR code for shortened URLs You can shorten the URL of the current page you are viewing or a specific URL by clicking the extension icon or pasting it into the extension input bar. The extension has been made open source. The source code can be found at https://github.com/tonystark93/URL-shortener-extension Shorten URL using various providers * tinyurl.com * bit.ly * cutt.ly * is.gd * v.gd * tny.im 🔒 Privacy focused (We don't ask for unnecessary permissions or track the users while using the extension) List of features available ✓ Copy to clipboard ✓ Night Mode ✓ Right Click ✓ QR Code Generate ✓ Automatic URL shortening on extension click ✓ History of URL shortened ✓ Delete History ✓ Export as CSV option ✓ Change keyboard shortcuts
擴展基本資訊
名稱 | Url Shortener |
ID | godoifjoiadanijplaghmhgfeffnblib |
官方網址 | https://chromewebstore.google.com/detail/url-shortener/godoifjoiadanijplaghmhgfeffnblib |
簡介 | Create and share short links using tinyurl, bit.ly, cutt.ly, is.gd, v.gd, tny.im and also generate QR code for shortened Url |
檔案大小 | 74.62 KB |
安裝次數 | 75,840 |
目前版本 | 14.0.5 |
更新時間 | 2024-01-22 |
上架時間 | 2020-05-18 |
評分 | 4.88/5 共 265 次評分 |
開發者 | https://thebyteseffect.com |
電子郵箱 | [email protected] |
付費類型 | free |
擴展官網 | https://thebyteseffect.com/posts/features-of-url-shortener-extension.1/ |
支援的語言 | en |
manifest.json | |
{ "icons": { "16": "icon.png", "48": "icon48.png", "128": "icon128.png" }, "background": { "service_worker": "bg.js" }, "options_page": "options.html", "update_url": "http:\/\/clients2.google.com\/service\/update2\/crx", "name": "Url Shortener", "version": "14.0.5", "manifest_version": 3, "description": "Create and share short links using tinyurl, bit.ly, cutt.ly, is.gd, v.gd, tny.im and also generate QR code for shortened Url", "action": { "default_icon": "icon128.png", "default_popup": "popup.html" }, "permissions": [ "contextMenus", "activeTab", "storage", "scripting" ], "commands": { "_execute_action": { "suggested_key": { "mac": "Command+Shift+L", "default": "Ctrl+Shift+L" } } }, "host_permissions": [ "https:\/\/tinyurl.com\/*" ] } |