Typer
Type in any input programatically.
What is Typer?
Typer is a Chrome extension developed by Winner Crespo, and its main feature is "Type in any input programatically.".
Extension Screenshots
Download Typer Extension CRX File
Download Typer extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
Generates random text and insert it in a typing speed (Configurable).
Extension Basic Information
Name | Typer |
ID | bpmfajblmdikmahchnllakodjjjkpppp |
Official URL | https://chromewebstore.google.com/detail/typer/bpmfajblmdikmahchnllakodjjjkpppp |
Description | Type in any input programatically. |
File Size | 23.99 KB |
Installation Count | 83 |
Current Version | 0.0.2 |
Last Updated | 2019-06-22 |
Publish Date | 2019-06-18 |
Rating | 5.00/5 Total 1 Ratings |
Developer | Winner Crespo |
[email protected] | |
Payment Type | free |
Supported Languages | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Typer", "version": "0.0.2", "description": "Type in any input programatically.", "background": { "scripts": [ "background.js" ], "persistent": false }, "browser_action": { "default_popup": "popup.html" }, "permissions": [ "contextMenus" ], "icons": { "16": ".\/assets\/logo-black-16x16.png", "32": ".\/assets\/logo-black-32x32.png" }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "lorem.js", "contentScript.js", "type.js" ] } ], "manifest_version": 2 } |