Shlink
Unofficial Shlink extension
Shlinkคืออะไร?
Shlink เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Edward Shen และคุณลักษณะหลักของมันคือ "Unofficial Shlink extension"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Shlink
ดาวน์โหลดไฟล์ส่วนขยาย 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" ] } } |