Auto Cursor

A productivity tool to automatically select the first visible text input.

Hvad er Auto Cursor?

Auto Cursor er en Chrome-udvidelse udviklet af spyrosoft, og dens hovedfunktion er "A productivity tool to automatically select the first visible text input.".

Udvidelsesskærmbilleder

screenshot

Download Auto Cursor-udvidelses-CRX-fil

Download Auto Cursor-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        Do you ever feel annoyed because you have to click in a username or search text field? The cursor should have been placed there automatically. This extension aims to solve that problem.                    

Grundlæggende oplysninger om udvidelsen

Navn Auto Cursor Auto Cursor
ID gjaabiillfmidpcknchjeiadoppocmaf
Officiel URL https://chrome.google.com/webstore/detail/auto-cursor/gjaabiillfmidpcknchjeiadoppocmaf
Beskrivelse A productivity tool to automatically select the first visible text input.
Filstørrelse 7.38 KB
Antal Installationer 115
Nuværende Version 1.0
Senest Opdateret 2015-10-20
Udgivelsesdato 2015-10-20
Bedømmelse 5.00/5 Samlet 1 Bedømmelser
Udvikler spyrosoft
Betalingsmetode free
Hjælpeside-URL http://spyrosoft.com/contact
Understøttede Sprog en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Auto Cursor",
    "description": "A productivity tool to automatically select the first visible text input.",
    "version": "1.0",
    "icons": {
        "128": "auto-cursor-128.png"
    },
    "permissions": [
        "tabs",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "auto-cursor.js"
            ],
            "run_at": "document_end"
        }
    ],
    "manifest_version": 2
}