AHK add on

This script is helping to grab elements on the web page for scripting language AHK. plugin reacts on this three keypress…

¿Qué es AHK add on?

AHK add on es una extensión de Chrome desarrollada por dhl.appextension, y su función principal es "This script is helping to grab elements on the web page for scripting language AHK. plugin reacts on this three keypress…".

Capturas de Pantalla de la Extensión

screenshot

Descargar Archivo CRX de la Extensión AHK add on

Descarga archivos de extensión AHK add on 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

                        This script is helping to grab elements on the web page for scripting language AHK.

plugin reacts on this three keypress scenarios:
#AHKs   - Press this key combination to select an element on the web page
#AHKg   - Press this key combination to grab an element value on the web page
#AHKi    - Press this key combination to insert value into element on the web page
#AHKc   - Press this key combination to click an element on the web page
#AHKe   - Press this key combination to execute code on the web page

After you press this key combination on the keyboard, the pop up window appears where you can insert the element Selector to identify the element that you want to work with.

It is easy to obtain web page selector by rightclicking on the element on the web page and selecting "Inspect" from the drop down menu. Chrome developer windows appear and you see your element highlighted. Right click on this highlighted element in the web page source code and select Copy>>Copy Selector. 

Now you can insert this selector after pressing #AHKc and press enter. It will click element on the web page for you. 

In case you want more info or help, contact me: tomasburner.com                    

Información Básica de la Extensión

Nombre AHK add on AHK add on
ID fcmdacglflihillcchdijcnlnbhlpfmo
URL Oficial https://chromewebstore.google.com/detail/ahk-add-on/fcmdacglflihillcchdijcnlnbhlpfmo
Descripción This script is helping to grab elements on the web page for scripting language AHK. plugin reacts on this three keypress…
Tamaño del Archivo 13.26 KB
Cantidad de Instalaciones 676
Versión Actual 1.0.2
Última Actualización 2023-04-22
Fecha de Publicación 2022-07-27
Calificación 5.00/5 Total de 1 Calificaciones
Desarrollador dhl.appextension
Correo electrónico [email protected]
Tipo de Pago free
Sitio Web de la Extensión https://tomasburner.com/
Idiomas Soportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "AHK add on",
    "version": "1.0.2",
    "icons": {
        "128": "Icons\/icon.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "options_page": "options.html",
    "background": {
        "service_worker": "background.js"
    }
}