Shlink
Unofficial Shlink extension
Qu'est-ce que Shlink ?
Shlink est une extension Chrome développée par Edward Shen, et sa fonction principale est "Unofficial Shlink extension".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Shlink
Téléchargez les fichiers d'extension Shlink au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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.
Informations de Base sur l'Extension
Nom | Shlink |
ID | mgdacpmionfhhogkokjbdeehfnnliajj |
URL Officiel | https://chromewebstore.google.com/detail/shlink/mgdacpmionfhhogkokjbdeehfnnliajj |
Description | Unofficial Shlink extension |
Taille du Fichier | 91.86 KB |
Nombre d'Installations | 189 |
Version Actuelle | 0.5.1 |
Dernière Mise à Jour | 2022-11-29 |
Date de Publication | 2020-09-21 |
Développeur | Edward Shen |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://github.com/edward-shen/shlink |
URL de la Page d'Aide | https://github.com/edward-shen/shlink/issues |
Langues Prises en Charge | 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" ] } } |