Shlink
Unofficial Shlink extension
什么是Shlink?
Shlink是由Edward Shen开发的Chrome扩展程序,该扩展的主要功能是“Unofficial Shlink extension”。
扩展截图
下载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 |
ID | mgdacpmionfhhogkokjbdeehfnnliajj |
官方URL | 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" ] } } |