Auto Cursor

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

Vad är Auto Cursor?

Auto Cursor är en Chrome-tillägg utvecklad av spyrosoft, och dess huvudfunktion är "A productivity tool to automatically select the first visible text input.".

Tilläggsskärmbilder

screenshot

Ladda ner Auto Cursor-förlängningens CRX-fil

Ladda ner Auto Cursor-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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äggande Information om Tillägg

Namn Auto Cursor Auto Cursor
ID gjaabiillfmidpcknchjeiadoppocmaf
Officiell webbadress https://chrome.google.com/webstore/detail/auto-cursor/gjaabiillfmidpcknchjeiadoppocmaf
Beskrivning A productivity tool to automatically select the first visible text input.
Filstorlek 7.38 KB
Antal Installationer 115
Aktuell Version 1.0
Senast Uppdaterad 2015-10-20
Publiceringsdatum 2015-10-20
Betyg 5.00/5 Totalt 1 Betyg
Utvecklare spyrosoft
Betalningssätt free
Hjälpsida URL http://spyrosoft.com/contact
Stödda Språk 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
}