Chromerly URL-shortener

Chromerly is a simple yet featureful URL-shortener extension.

Qu'est-ce que Chromerly URL-shortener ?

Chromerly URL-shortener est une extension Chrome développée par Ville Lahdenvuo, et sa fonction principale est "Chromerly is a simple yet featureful URL-shortener extension.".

Captures d'Écran de l'Extension

screenshot
screenshot
screenshot
screenshot
screenshot

Télécharger le fichier CRX de l'extension Chromerly URL-shortener

Téléchargez les fichiers d'extension Chromerly 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

                        We all hate those long auto-generated links that we see every day. So I made this simple extension to easily shorten those links and making sharing things a breeze.

Features:
 * Simple icon to click to shorten tab's url
 * Context menu to shorten page, image, link, selection, video or even audio urls
 * Urly keyword in the omnibox to shorten any url you want
 * NEW: You can now block shortened links and redirect to info page instead!
 * NEW: Chromerly now supports Web Intents!

If you want to know exactly how this extension works, take a look at the source code! This is an open source project.                    

Informations de Base sur l'Extension

Nom Chromerly URL-shortener Chromerly URL-shortener
ID ebfkcfgnlbfdnjfpoegigihcijkmnpee
URL Officiel https://chromewebstore.google.com/detail/chromerly-url-shortener/ebfkcfgnlbfdnjfpoegigihcijkmnpee
Description Chromerly is a simple yet featureful URL-shortener extension.
Taille du Fichier 99.36 KB
Nombre d'Installations 429
Version Actuelle 2.1
Dernière Mise à Jour 2012-07-07
Date de Publication 2012-07-07
Évaluation 4.11/5 Total 19 Évaluations
Développeur Ville Lahdenvuo
Type de Paiement free
URL de la Page d'Aide http://github.com/tuhoojabotti/Chromerly-URL-shortener
Langues Prises en Charge en,fi
manifest.json
{
    "update_url": "http:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_ExtensionName__",
    "description": "__MSG_ExtensionDesc__",
    "version": "2.1",
    "manifest_version": 2,
    "default_locale": "en",
    "homepage_url": "http:\/\/github.com\/tuhoojabotti\/Chromerly-URL-shortener",
    "minimum_chrome_version": "19",
    "permissions": [
        "",
        "tabs",
        "notifications",
        "contextMenus",
        "clipboardWrite"
    ],
    "optional_permissions": [
        "webRequest",
        "webRequestBlocking"
    ],
    "options_page": "options\/options.html",
    "icons": {
        "16": "graphics\/16.png",
        "48": "graphics\/48.png",
        "128": "graphics\/128.png"
    },
    "intents": {
        "http:\/\/webintents.org\/shorten": {
            "type": [
                "text\/uri-list"
            ],
            "href": "intent\/intent.html",
            "title": "Shorten with Chromerly",
            "disposition": "inline"
        }
    },
    "background": {
        "page": "background.html"
    },
    "omnibox": {
        "keyword": "urly"
    },
    "page_action": {
        "default_icon": "graphics\/16.png",
        "default_title": "__MSG_UrlyShorten__"
    }
}