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 là gì?

TinyURL là một tiện ích mở rộng Chrome được phát triển bởi ByteCrafter, và tính năng chính của nó là "A one-click tool to generate a tiny URL (https://tinyurl.com) from your current URL and automatically copy it to the clipboard.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng TinyURL

Tải xuống các tệp mở rộng TinyURL dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên TinyURL TinyURL
ID jbnhjginpjihefndhjlhlggblfbefpod
URL Chính Thức https://chromewebstore.google.com/detail/tinyurl/jbnhjginpjihefndhjlhlggblfbefpod
Mô tả A one-click tool to generate a tiny URL (https://tinyurl.com) from your current URL and automatically copy it to the clipboard.
Kích Thước Tệp 12.51 KB
Số Lần Cài Đặt 2,242
Phiên Bản Hiện Tại 2019.9.27.22
Cập Nhật Lần Cuối 2019-09-30
Ngày Phát Hành 2019-09-28
Đánh Giá 3.67/5 Tổng số 3 Đánh Giá
Nhà Phát Triển ByteCrafter
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
            ]
        }
    ]
}