ClickThrough

Automate browser clicks with ClickThrough.

¿Qué es ClickThrough?

ClickThrough es una extensión de Chrome desarrollada por Shawn Conn, y su función principal es "Automate browser clicks with ClickThrough.".

Capturas de Pantalla de la Extensión

screenshot
screenshot
screenshot
screenshot

Descargar Archivo CRX de la Extensión ClickThrough

Descarga archivos de extensión ClickThrough 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

                        You ever find yourself on a page that inevitably contains some hyperlink which you need to click to end up at your destination? Perhaps you subscribe to feeds that open to pages with common download links? Do you visit many news aggregation sites which open to comment pages instead of piece of news that you wish to read? What about pages you commonly visit but can't bookmark directly, so you have to open a book mark then open your intended destination?

These are issues that ClickThrough remedies. Coupled with the powerful jQuery library, a ClickThrough allows users to specify: 
1. A site domain
2. A site path on the domain
3. A jQuery selector expression of a link to select. 

Once a ClickThrough is added, Chrome will pickup on one these pages and automatically navigate to the link in question. The user will be notified with a highlighted icon in the address bar from which they can navigate back to.

This is a small extension built up in a short manner to solve a particular niche problem. It's more approachable to the power user/web developer rather than the average user. If the extension finds enough users to be useful, new functionality & ease of use improvements are planned. 

Updates:

Version 1.1:

*Make sure options are set to default values
*Make sure current tab url is entered in pop up                    

Información Básica de la Extensión

Nombre ClickThrough ClickThrough
ID bjfeoajfcanjhipllkbkpeagofopgoki
URL Oficial https://chromewebstore.google.com/detail/clickthrough/bjfeoajfcanjhipllkbkpeagofopgoki
Descripción Automate browser clicks with ClickThrough.
Tamaño del Archivo 90.56 KB
Cantidad de Instalaciones 30
Versión Actual 2.1
Última Actualización 2016-04-20
Fecha de Publicación 2016-04-19
Desarrollador Shawn Conn
Tipo de Pago free
Sitio Web de la Extensión https://www.luciditi.io/
Idiomas Soportados en
manifest.json
{
    "update_url": "http:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "ClickThrough",
    "version": "2.1",
    "description": "Automate browser clicks with ClickThrough.",
    "background": {
        "page": "background.html"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "\/js\/jquery-1.7.2.min.js",
                "\/js\/contentscript.js"
            ]
        }
    ],
    "page_action": {
        "default_icon": "icons\/icon16.png",
        "default_popup": "popup.html"
    },
    "permissions": [
        "chrome:\/\/favicon\/",
        "",
        "tabs"
    ],
    "options_page": "options.html",
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "manifest_version": 2
}