Clicker
Extension for getting current url in short form via clck.ru service
¿Qué es Clicker?
Clicker es una extensión de Chrome desarrollada por Ray, y su función principal es "Extension for getting current url in short form via clck.ru service".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión Clicker
Descarga archivos de extensión Clicker en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.
Instrucciones de Uso de la Extensión
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.
Información Básica de la Extensión
Nombre | Clicker |
ID | oonhhnhddmkflmkhoekflgloclaedocn |
URL Oficial | https://chromewebstore.google.com/detail/clicker/oonhhnhddmkflmkhoekflgloclaedocn |
Descripción | Extension for getting current url in short form via clck.ru service |
Tamaño del Archivo | 32.98 KB |
Cantidad de Instalaciones | 445 |
Versión Actual | 0.3.4.1 |
Última Actualización | 2013-06-26 |
Fecha de Publicación | 2013-06-25 |
Calificación | 4.15/5 Total de 20 Calificaciones |
Desarrollador | Ray |
Tipo de Pago | free |
URL de la Página de Ayuda | http://twitter.com/i__Ray |
Idiomas Soportados | 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:\/\/*\/*" ] } |