Typer

Type in any input programatically.

Typer là gì?

Typer là một tiện ích mở rộng Chrome được phát triển bởi Winner Crespo, và tính năng chính của nó là "Type in any input programatically.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Typer

Tải xuống các tệp mở rộng Typer dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        Generates random text and insert it in a typing speed (Configurable).                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Typer Typer
ID bpmfajblmdikmahchnllakodjjjkpppp
URL Chính Thức https://chromewebstore.google.com/detail/typer/bpmfajblmdikmahchnllakodjjjkpppp
Mô tả Type in any input programatically.
Kích Thước Tệp 23.99 KB
Số Lần Cài Đặt 83
Phiên Bản Hiện Tại 0.0.2
Cập Nhật Lần Cuối 2019-06-22
Ngày Phát Hành 2019-06-18
Đánh Giá 5.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển Winner Crespo
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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
}