Input Cursor Focus
Focuses cursor in first text input if none is focused.
Vad är Input Cursor Focus?
Input Cursor Focus är en Chrome-tillägg utvecklad av Krzysztof Wróbel, och dess huvudfunktion är "Focuses cursor in first text input if none is focused.".
Tilläggsskärmbilder
Ladda ner Input Cursor Focus-förlängningens CRX-fil
Ladda ner Input Cursor Focus-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
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.
Grundläggande Information om Tillägg
Namn | Input Cursor Focus |
ID | hnhplmcglkomfmoapojflionoibodhla |
Officiell webbadress | https://chromewebstore.google.com/detail/input-cursor-focus/hnhplmcglkomfmoapojflionoibodhla |
Beskrivning | Focuses cursor in first text input if none is focused. |
Filstorlek | 20.78 KB |
Antal Installationer | 1,864 |
Aktuell Version | 0.1.2 |
Senast Uppdaterad | 2012-08-21 |
Publiceringsdatum | 2012-08-21 |
Betyg | 4.08/5 Totalt 24 Betyg |
Utvecklare | Krzysztof Wróbel |
Betalningssätt | free |
Stödda Språk | 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'" } |