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
官方網址 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\/*"
    ]
}