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은(는) ByteCrafter에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "A one-click tool to generate a tiny URL (https://tinyurl.com) from your current URL and automatically copy it to the clipboard."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot

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

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

확장 프로그램 사용 설명서

                        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 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"
            ]
        }
    ]
}