URL Shortener
Shortens URLs with various services.
Qu'est-ce que URL Shortener ?
URL Shortener est une extension Chrome développée par Klaus Eckelt, et sa fonction principale est "Shortens URLs with various services.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension URL Shortener
Téléchargez les fichiers d'extension URL Shortener 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
By clicking the extension's button the URL of the current Tab is used to create a shorter one. The short URL will be displayed and automatically copied to your clipboard. Services: ‣ anonym.to ‣ goo.gl ‣ is.gd ‣ t1p.de ‣ tinyurl.com: Permissions: ‣ Access to anonym.to, is.gd, t1p.de, tinyurl.com googleapis.com: To use the services. ‣ Read browsing history: to read the current tab's URL. ‣ Clipboard write to copy the shortened URL. ‣ Extension source code: https://bitbucket.org/keckelt/url-shorten-extension
Informations de Base sur l'Extension
Nom | URL Shortener |
ID | ecoljajakaeclkkcakoamigglloihgao |
URL Officiel | https://chromewebstore.google.com/detail/url-shortener/ecoljajakaeclkkcakoamigglloihgao |
Description | Shortens URLs with various services. |
Taille du Fichier | 188 KB |
Nombre d'Installations | 1,873 |
Version Actuelle | 2.2 |
Dernière Mise à Jour | 2016-07-11 |
Date de Publication | 2016-07-11 |
Évaluation | 4.71/5 Total 17 Évaluations |
Développeur | Klaus Eckelt |
Type de Paiement | free |
Site Web de l'Extension | https://bitbucket.org/keckelt/url-shorten-extension |
URL de la Page d'Aide | https://chrome.google.com/webstore/detail/url-shortener/ecoljajakaeclkkcakoamigglloihgao/support |
Langues Prises en Charge | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "URL Shortener", "description": "Shortens URLs with various services.", "version": "2.2", "author": "eckelt.info", "icons": { "16": "style\/images\/icon1\/icon-16.png", "19": "style\/images\/icon1\/icon-19.png", "32": "style\/images\/icon1\/icon-32.png", "38": "style\/images\/icon1\/icon-38.png", "48": "style\/images\/icon1\/icon-48.png", "64": "style\/images\/icon1\/icon-64.png", "128": "style\/images\/icon1\/icon-128.png", "256": "style\/images\/icon1\/icon-256.png" }, "permissions": [ "http:\/\/anonym.to\/", "https:\/\/www.googleapis.com\/urlshortener\/", "http:\/\/is.gd\/", "https:\/\/is.gd\/", "http:\/\/t1p.de\/", "http:\/\/tinyurl.com\/", "tabs", "clipboardWrite", "storage" ], "browser_action": { "default_title": "Click to shorten URL.", "default_icon": { "19": "style\/images\/icon1\/icon-19.png", "38": "style\/images\/icon1\/icon-38.png" }, "default_popup": "popup.html" }, "options_page": "options.html" } |