Shlink

Unofficial Shlink extension

Shlink là gì?

Shlink là một tiện ích mở rộng Chrome được phát triển bởi Edward Shen, và tính năng chính của nó là "Unofficial Shlink extension".

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

screenshot

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

Tải xuống các tệp mở rộng Shlink 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 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.                    

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

Tên Shlink Shlink
ID mgdacpmionfhhogkokjbdeehfnnliajj
URL Chính Thức https://chromewebstore.google.com/detail/shlink/mgdacpmionfhhogkokjbdeehfnnliajj
Mô tả Unofficial Shlink extension
Kích Thước Tệp 91.86 KB
Số Lần Cài Đặt 189
Phiên Bản Hiện Tại 0.5.1
Cập Nhật Lần Cuối 2022-11-29
Ngày Phát Hành 2020-09-21
Nhà Phát Triển Edward Shen
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/edward-shen/shlink
URL Trang Trợ Giúp https://github.com/edward-shen/shlink/issues
Ngôn Ngữ Được Hỗ Trợ 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"
        ]
    }
}