Clicker

Extension for getting current url in short form via clck.ru service

Cos'è Clicker?

Clicker è un'estensione di Chrome sviluppata da Ray, e la sua funzione principale è "Extension for getting current url in short form via clck.ru service".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione Clicker

Scarica i file di estensione Clicker in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        With this extension you can get current url of opened tab in short form via clck.ru service.(Thanks Bobuk for this nice service)

Changes in v0.2:
1) Clicker icon have transparent background
2) Short link is automatically copied to the clipboard

Changes in v0.3:
If select any part of text on the page and to call the Clicker extension, then selected text with short link will be copied in Clicker's input field and all this will be copied into the clipboard.
If not selected nothing, then will be copied only short link.

Clicker v0.3.2 - small bugfix.
Clicker v0.3.4 - small fix.
Clicker v0.3.4.1 - manifest updates.                    

Informazioni di Base sull'Estensione

Nome Clicker Clicker
ID oonhhnhddmkflmkhoekflgloclaedocn
URL Ufficiale https://chromewebstore.google.com/detail/clicker/oonhhnhddmkflmkhoekflgloclaedocn
Descrizione Extension for getting current url in short form via clck.ru service
Dimensione del File 32.98 KB
Conteggio Installazioni 445
Versione Corrente 0.3.4.1
Ultimo Aggiornamento 2013-06-26
Data di Pubblicazione 2013-06-25
Valutazione 4.15/5 Totale 20 Valutazioni
Sviluppatore Ray
Tipo di Pagamento free
URL della Pagina di Aiuto http://twitter.com/i__Ray
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Clicker",
    "version": "0.3.4.1",
    "description": "Extension for getting current url in short form via clck.ru service",
    "background": {
        "page": "background.html"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*"
            ],
            "js": [
                "content_script.js"
            ]
        }
    ],
    "browser_action": {
        "default_icon": "icon48.png",
        "default_popup": "popup.html"
    },
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png"
    },
    "permissions": [
        "tabs",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ]
}