Clicker

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

Co to jest Clicker?

Clicker to rozszerzenie Chrome opracowane przez Ray, a jego główną funkcją jest „Extension for getting current url in short form via clck.ru service”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot

Pobierz plik CRX rozszerzenia Clicker

Pobierz pliki rozszerzeń Clicker 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

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa Clicker Clicker
ID oonhhnhddmkflmkhoekflgloclaedocn
Oficjalny URL https://chromewebstore.google.com/detail/clicker/oonhhnhddmkflmkhoekflgloclaedocn
Opis Extension for getting current url in short form via clck.ru service
Rozmiar pliku 32.98 KB
Liczba instalacji 445
Aktualna Wersja 0.3.4.1
Ostatnia Aktualizacja 2013-06-26
Data Publikacji 2013-06-25
Ocena 4.15/5 Łącznie 20 Oceny
Deweloper Ray
Typ Płatności free
Adres URL Strony Pomocy http://twitter.com/i__Ray
Obsługiwane Języki 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:\/\/*\/*"
    ]
}