URL Shortener - TinyURL Extension

Shorten URLs with ease.

什么是URL Shortener - TinyURL Extension?

URL Shortener - TinyURL Extension是由dev.bergda开发的Chrome扩展程序,该扩展的主要功能是“Shorten URLs with ease.”。

扩展截图

screenshot

下载URL Shortener - TinyURL Extension扩展crx文件

下载URL Shortener - TinyURL Extension扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        The only URL Shortener Extension that doesn't open a popup.

Clicking the Extension Icon is all you need to do to shorten and copy the current URL, with no extra clutter do distract you from your browsing.

The same functionality is added to Chrome's Context menu for links, right-clicking a link gives you the option to shorten and copy the clicked link with just one click.

An 'OK' or 'ERR' badge is displayed on the Extension Icon to notify the user about a successful shortening and that the shortened URL is now copied to the user's clipboard, or to notify the user of an error.

This extension uses TinyURL's URL Shortener Service to shorten the URLs.
This extension does not store user data at any point. The current URL (or the URL from the clicked link) is the only thing that gets sent to the TinyURL API. The original URL or the shortened URL is not stored by this extension.                    

扩展基本信息

名称 URL Shortener - TinyURL Extension URL Shortener - TinyURL Extension
ID mnnjjchefohcoocleiepmdpfhdpgoflk
官方URL https://chromewebstore.google.com/detail/url-shortener-tinyurl-ext/mnnjjchefohcoocleiepmdpfhdpgoflk
简介 Shorten URLs with ease.
文件大小 8.04 KB
安装次数 60
当前版本 1.0.0
更新时间 2023-08-05
上架时间 2023-08-05
评分 5.00/5 共1次评分
开发者 dev.bergda
电子邮箱 [email protected]
付费类型 free
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "URL Shortener - TinyURL Extension",
    "version": "1.0.0",
    "description": "Shorten URLs with ease.",
    "action": {
        "default_title": "Shorten Url and Copy to Clipboard"
    },
    "icons": {
        "48": "icons\/icon48.png",
        "96": "icons\/icon96.png"
    },
    "background": {
        "service_worker": "service-worker.js"
    },
    "permissions": [
        "activeTab",
        "scripting",
        "contextMenus",
        "clipboardWrite"
    ],
    "content_security_policy": {
        "extension_pages": "default-src 'self'; connect-src 'self' https:\/\/tinyurl.com;"
    }
}