Shorty

URL Shortener

什么是Shorty?

Shorty是由https://r3bl.com开发的Chrome扩展程序,该扩展的主要功能是“URL Shortener”。

扩展截图

screenshot
screenshot

下载Shorty扩展crx文件

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

扩展使用说明

                        Shortens the current URL (using tinyurl.com) and copies it to the clipboard. Ctrl+Shift+P keyboard shortcut activates it.                    

扩展基本信息

名称 Shorty Shorty
ID cbgcnhimnlnjejdopldfdicfingmaijg
官方URL https://chromewebstore.google.com/detail/shorty/cbgcnhimnlnjejdopldfdicfingmaijg
简介 URL Shortener
文件大小 120 KB
安装次数 50
当前版本 2.1
更新时间 2023-03-11
上架时间 2020-05-31
评分 5.00/5 共5次评分
开发者 https://r3bl.com
电子邮箱 [email protected]
付费类型 free
扩展官网 http://r3bl.com
帮助页面URL https://github.com/r3bl-org/shorty/issues
支持的语言 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Shorty",
    "description": "URL Shortener",
    "version": "2.1",
    "icons": {
        "16": "icon16.png",
        "32": "icon32.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "action": {
        "default_title": "Click to shorten URL",
        "default_popup": "index.html",
        "default_icon": {
            "16": "icon16.png",
            "32": "icon32.png",
            "48": "icon48.png",
            "128": "icon128.png"
        }
    },
    "commands": {
        "_execute_browser_action": {
            "suggested_key": {
                "default": "Ctrl+Shift+P",
                "mac": "MacCtrl+Shift+P"
            },
            "description": "Shortens URL in address bar"
        }
    },
    "permissions": [
        "clipboardWrite",
        "activeTab"
    ],
    "host_permissions": [
        "*:\/\/*.tinyurl.com\/*"
    ]
}