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"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot
screenshot

Url Shortener 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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 Url Shortener
ID godoifjoiadanijplaghmhgfeffnblib
공식 URL 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\/*"
    ]
}