Input Cursor Focus

Focuses cursor in first text input if none is focused.

Wat is Input Cursor Focus?

Input Cursor Focus is een Chrome-extensie ontwikkeld door Krzysztof Wróbel, en de belangrijkste functie is "Focuses cursor in first text input if none is focused.".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie Input Cursor Focus

Download Input Cursor Focus-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        Automatically focuses text input on websites allowing you to immediately write without using mouse. E.g. on Amazon.com cursor is focused on search text input.                    

Basisinformatie over de Extensie

Naam Input Cursor Focus Input Cursor Focus
ID hnhplmcglkomfmoapojflionoibodhla
Officiële URL https://chromewebstore.google.com/detail/input-cursor-focus/hnhplmcglkomfmoapojflionoibodhla
Beschrijving Focuses cursor in first text input if none is focused.
Bestandsgrootte 20.78 KB
Aantal Installaties 1,864
Huidige Versie 0.1.2
Laatst Bijgewerkt 2012-08-21
Publicatiedatum 2012-08-21
Beoordeling 4.08/5 Totaal 24 Beoordelingen
Ontwikkelaar Krzysztof Wróbel
Betalingswijze free
Ondersteunde Talen en
manifest.json
{
    "update_url": "http:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Input Cursor Focus",
    "version": "0.1.2",
    "manifest_version": 2,
    "description": "Focuses cursor in first text input if none is focused.",
    "icons": {
        "128": "icon.png"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "inj.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "bg.js"
        ]
    },
    "content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com; object-src 'self'"
}