Clicker
Extension for getting current url in short form via clck.ru service
What is Clicker?
Clicker is a Chrome extension developed by Ray, and its main feature is "Extension for getting current url in short form via clck.ru service".
Extension Screenshots
Download Clicker Extension CRX File
Download Clicker extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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.
Extension Basic Information
Name | Clicker |
ID | oonhhnhddmkflmkhoekflgloclaedocn |
Official URL | https://chromewebstore.google.com/detail/clicker/oonhhnhddmkflmkhoekflgloclaedocn |
Description | Extension for getting current url in short form via clck.ru service |
File Size | 32.98 KB |
Installation Count | 445 |
Current Version | 0.3.4.1 |
Last Updated | 2013-06-26 |
Publish Date | 2013-06-25 |
Rating | 4.15/5 Total 20 Ratings |
Developer | Ray |
Payment Type | free |
Help Page URL | http://twitter.com/i__Ray |
Supported Languages | 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:\/\/*\/*" ] } |