Preview Short URLs
Stop short URL abuse by previewing the URL automatically before visiting it.
Co to jest Preview Short URLs?
Preview Short URLs to rozszerzenie Chrome opracowane przez azelphur, a jego główną funkcją jest „Stop short URL abuse by previewing the URL automatically before visiting it.”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Preview Short URLs
Pobierz pliki rozszerzeń Preview Short URLs w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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.
Podstawowe informacje o rozszerzeniu
Nazwa | Preview Short URLs |
ID | lhnpeajamdliepjblldlghmpkohfjakb |
Oficjalny URL | https://chromewebstore.google.com/detail/preview-short-urls/lhnpeajamdliepjblldlghmpkohfjakb |
Opis | Stop short URL abuse by previewing the URL automatically before visiting it. |
Rozmiar pliku | 11.33 KB |
Liczba instalacji | 339 |
Aktualna Wersja | 1.0 |
Ostatnia Aktualizacja | 2013-11-18 |
Data Publikacji | 2013-11-18 |
Ocena | 3.71/5 Łącznie 7 Oceny |
Deweloper | azelphur |
Typ Płatności | free |
Strona Rozszerzenia | http://blog.azelphur.com |
Obsługiwane Języki | 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" ] } } |