Clicker

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

什么是Clicker?

Clicker是由Ray开发的Chrome扩展程序,该扩展的主要功能是“Extension for getting current url in short form via clck.ru service”。

扩展截图

screenshot
screenshot

下载Clicker扩展crx文件

下载Clicker扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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:\/\/*\/*"
    ]
}