Clicker

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

Clicker क्या है?

Clicker Ray द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Extension for getting current url in short form via clck.ru service"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Clicker एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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.                    

एक्सटेंशन की मूल जानकारी

नाम Clicker Clicker
ID oonhhnhddmkflmkhoekflgloclaedocn
आधिकारिक URL https://chromewebstore.google.com/detail/clicker/oonhhnhddmkflmkhoekflgloclaedocn
विवरण Extension for getting current url in short form via clck.ru service
फ़ाइल का आकार 32.98 KB
स्थापना संख्या 445
वर्तमान संस्करण 0.3.4.1
अंतिम अपडेट 2013-06-26
प्रकाशन तिथि 2013-06-25
रेटिंग 4.15/5 कुल 20 रेटिंग्स
डेवलपर Ray
भुगतान के प्रकार free
सहायता पृष्ठ URL http://twitter.com/i__Ray
समर्थित भाषाएँ 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:\/\/*\/*"
    ]
}