URL Shortener
Shortens URLs with various services.
Was ist URL Shortener?
URL Shortener ist eine Chrome-Erweiterung, die von Klaus Eckelt entwickelt wurde, und ihr Hauptmerkmal ist "Shortens URLs with various services.".
Erweiterungsscreenshots
URL Shortener-Erweiterungs-CRX-Datei herunterladen
Laden Sie URL Shortener-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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 Grundlegende Informationen zur Erweiterung
| Name | |
| ID | ecoljajakaeclkkcakoamigglloihgao |
| Offizielle URL | https://chromewebstore.google.com/detail/url-shortener/ecoljajakaeclkkcakoamigglloihgao |
| Beschreibung | Shortens URLs with various services. |
| Dateigröße | 188 KB |
| Installationsanzahl | 1,873 |
| Aktuelle Version | 2.2 |
| Letztes Update | 2016-07-11 |
| Veröffentlichungsdatum | 2016-07-11 |
| Bewertung | 4.71/5 Insgesamt 17 Bewertungen |
| Entwickler | Klaus Eckelt |
| Zahlungsart | free |
| Erweiterungswebsite | https://bitbucket.org/keckelt/url-shorten-extension |
| Hilfeseite URL | https://chrome.google.com/webstore/detail/url-shortener/ecoljajakaeclkkcakoamigglloihgao/support |
| Unterstützte Sprachen | 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"
} | |