Auto Cursor

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

Co to jest Auto Cursor?

Auto Cursor to rozszerzenie Chrome opracowane przez spyrosoft, a jego główną funkcją jest „A productivity tool to automatically select the first visible text input.”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Auto Cursor

Pobierz pliki rozszerzeń Auto Cursor w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa Auto Cursor Auto Cursor
ID gjaabiillfmidpcknchjeiadoppocmaf
Oficjalny URL https://chrome.google.com/webstore/detail/auto-cursor/gjaabiillfmidpcknchjeiadoppocmaf
Opis A productivity tool to automatically select the first visible text input.
Rozmiar pliku 7.38 KB
Liczba instalacji 115
Aktualna Wersja 1.0
Ostatnia Aktualizacja 2015-10-20
Data Publikacji 2015-10-20
Ocena 5.00/5 Łącznie 1 Oceny
Deweloper spyrosoft
Typ Płatności free
Adres URL Strony Pomocy http://spyrosoft.com/contact
Obsługiwane Języki 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
}