Shlink

Unofficial Shlink extension

什麼是Shlink?

Shlink是由Edward Shen開發的Chrome擴展程式,該擴展的主要功能是“Unofficial Shlink extension”。

擴展截圖

screenshot

下載Shlink擴展crx文件

下載Shlink擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        This unofficial extension provides a shortcut button to generate a short url using Shlink, a self-hosted link shortening service. You will need to run your own instance of Shlink for this extension to function!

After installing this extension, you'll need to go into the extension's preferences and enter your API key and the location of your Shlink instance.

Once installed and configured, click the extension and a short link will be requested from your instance for the page you're currently on. This short link will be copied to your clipboard, so you can easily paste it anywhere you'd like.                    

擴展基本資訊

名稱 Shlink Shlink
ID mgdacpmionfhhogkokjbdeehfnnliajj
官方網址 https://chromewebstore.google.com/detail/shlink/mgdacpmionfhhogkokjbdeehfnnliajj
簡介 Unofficial Shlink extension
檔案大小 91.86 KB
安裝次數 189
目前版本 0.5.1
更新時間 2022-11-29
上架時間 2020-09-21
開發者 Edward Shen
電子郵箱 [email protected]
付費類型 free
擴展官網 https://github.com/edward-shen/shlink
說明頁面URL https://github.com/edward-shen/shlink/issues
支援的語言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Shlink",
    "version": "0.5.1",
    "description": "Unofficial Shlink extension",
    "icons": {
        "16": "icons\/shlink-16.png",
        "48": "icons\/shlink-48.png",
        "64": "icons\/shlink-64.png",
        "96": "icons\/shlink-96.png",
        "128": "icons\/shlink-128.png",
        "256": "icons\/shlink-256.png"
    },
    "permissions": [
        "tabs",
        "notifications",
        "clipboardWrite",
        "storage"
    ],
    "options_ui": {
        "page": "options.html"
    },
    "browser_action": {
        "default_icon": {
            "16": "icons\/shlink-16.png",
            "48": "icons\/shlink-48.png",
            "64": "icons\/shlink-64.png",
            "96": "icons\/shlink-96.png",
            "128": "icons\/shlink-128.png",
            "256": "icons\/shlink-256.png"
        },
        "default_title": "Link it!"
    },
    "background": {
        "scripts": [
            "lib\/browser-polyfill.min.js",
            "background.js"
        ]
    }
}