Shlink
Unofficial Shlink extension
Shlink란 무엇입니까?
Shlink은(는) Edward Shen에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Unofficial Shlink extension"입니다.
확장 프로그램 스크린샷
Shlink 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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" ] } } |