Preview Short URLs
Stop short URL abuse by previewing the URL automatically before visiting it.
Hvad er Preview Short URLs?
Preview Short URLs er en Chrome-udvidelse udviklet af azelphur, og dens hovedfunktion er "Stop short URL abuse by previewing the URL automatically before visiting it.".
Udvidelsesskærmbilleder
Download Preview Short URLs-udvidelses-CRX-fil
Download Preview Short URLs-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
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.
Grundlæggende oplysninger om udvidelsen
Navn | Preview Short URLs |
ID | lhnpeajamdliepjblldlghmpkohfjakb |
Officiel URL | https://chromewebstore.google.com/detail/preview-short-urls/lhnpeajamdliepjblldlghmpkohfjakb |
Beskrivelse | Stop short URL abuse by previewing the URL automatically before visiting it. |
Filstørrelse | 11.33 KB |
Antal Installationer | 339 |
Nuværende Version | 1.0 |
Senest Opdateret | 2013-11-18 |
Udgivelsesdato | 2013-11-18 |
Bedømmelse | 3.71/5 Samlet 7 Bedømmelser |
Udvikler | azelphur |
Betalingsmetode | free |
Udvidelseswebsted | http://blog.azelphur.com |
Understøttede Sprog | 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" ] } } |