Preview Short URLs
Stop short URL abuse by previewing the URL automatically before visiting it.
Was ist Preview Short URLs?
Preview Short URLs ist eine Chrome-Erweiterung, die von azelphur entwickelt wurde, und ihr Hauptmerkmal ist "Stop short URL abuse by previewing the URL automatically before visiting it.".
Erweiterungsscreenshots
Preview Short URLs-Erweiterungs-CRX-Datei herunterladen
Laden Sie Preview Short URLs-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
This addon will show you a preview page clearly displaying the destination URL whenever you visit a shortened URL.
Currently supports:
bit.ly
bitly.com
tinyurl.com
is.gd
goo.gl
Want support for more? Feel free to suggest something. :)
Want to help out? This code is on github https://github.com/Azelphur/Preview-Short-URLs patches welcome!
Feel free to drop by irc://irc.azelphur.com/#azelphur if you have any questions. Grundlegende Informationen zur Erweiterung
| Name | |
| ID | lhnpeajamdliepjblldlghmpkohfjakb |
| Offizielle URL | https://chromewebstore.google.com/detail/preview-short-urls/lhnpeajamdliepjblldlghmpkohfjakb |
| Beschreibung | Stop short URL abuse by previewing the URL automatically before visiting it. |
| Dateigröße | 11.33 KB |
| Installationsanzahl | 339 |
| Aktuelle Version | 1.0 |
| Letztes Update | 2013-11-18 |
| Veröffentlichungsdatum | 2013-11-18 |
| Bewertung | 3.71/5 Insgesamt 7 Bewertungen |
| Entwickler | azelphur |
| Zahlungsart | free |
| Erweiterungswebsite | http://blog.azelphur.com |
| Unterstützte Sprachen | en-US |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "Preview Short URLs",
"description": "Stop short URL abuse by previewing the URL automatically before visiting it.",
"version": "1.0",
"author": "Alfie \"Azelphur\" Day",
"homepage_url": "http:\/\/blog.azelphur.com\/",
"permissions": [
"webRequest",
"webRequestBlocking",
"*:\/\/bit.ly\/*",
"*:\/\/bitly.com\/*",
"*:\/\/tinyurl.com\/*",
"*:\/\/is.gd\/*",
"*:\/\/goo.gl\/*"
],
"icons": {
"16": "icons\/icon128.png",
"48": "icons\/icon128.png",
"128": "icons\/icon128.png"
},
"background": {
"scripts": [
"background.js"
]
}
} | |